html

How to mute the sound of video by using embed tag in html

please Any one solve the following problem How to mute the sound of .wmv video by using embed tag in html its urgent.. Thanq ...

Custom configuration file custom_config.js not working?

Hello gals/guys, I am trying to use a custom configuration file instead of the default config.js file in the ckeditor root. I have placed a renamed copy of the config.js file in my webroot and call it with customConfig. It is not working for me though. Is my syntax creating any issues? I used the dev docs site as a ref: http://docs.cks...

Why does placing this html within form tags change the layout?

I'm using this free Web Template - EliteCircle and have just incorporated it into a master page. The master page wraps the html in: <form id="form1" runat="server"> //master page html </form> The template almost comes out fine except the entire page is surrounded by a think white border (default CSS behavior for form?) and the footer...

Does Javascript has an effect to the printed version of the site?

Simple question, don't have a printer around, My client is asking if the hiddent elements of the web page(items that show up on click) will be printed out on the paper or will it be hidden? ...

specified size of td

<table class="data-table"> <tr> <th style="width: 200px;"> DescriptionDescription <%--in this case <td> is resized--%> </th> </tr> <% foreach (var item in Model) { %> <tr> <td style="width: 200px;"> <%= Html.Encode(item.Description) %> </td> </tr> <% } %> </table...

Toggleclass doesn't seem to toggle class, what am I doing wrong?

Hi, I've been trying to make a button toggle a class, as well as show another div below it. Here is a jsFiddle example I have made for you. The first function works perfectly, shows and hides the div, but also I want the button itself to add and remove a class, I thought this would work but I seem to be doing something wrong. Thanks....

How to set dynamic value to "value" attribute of struts html:button tag ?

I am using following button tag to display button by passing some runtime value to "value" attribute: <html:button styleClass="button50" value="<%=no_list %>" onclick="callOneFunction(this);" /> it is throwing an jasper exception saying, setValue(String) cannot work with html:button. Please help me out to resolve my problem, I want ...

dynamic html table

I've to create a dynamic html table using the values configured in a table. I'm using JSP with MVC architecture. I've a row number, column number and value fields in table. If the values are 1,5 and HELLO correspondingly, then I've to display this HELLO in row 1 and column 5. The table structure is like the following. row column va...

Best way to open mailto: TAG in gmail

Can any one please let me know that, i need to open a gmail Compose Mail popup via mailto TAG. It always open the Outlook Express for new mail. ...

post values to external page explicitly PHP

Hi, I want to post values to a page through a hyperlink in another page. Is it possible to do that? Let's say I have a page results.php which has the starting line, <?php if(isset($_POST['posted_value'])) { echo "expected value"; // do something with the data } else { echo "no the value expected"; } If from another page say link....

<blink> tag in Internet Explorer

Neither the <blink> tag nor the text-decoration:blink; style in css are supported in Internet Explorer. Is there any technique available for making blinking text in IE? ...

What's the solution for this kind of problem?

<a onclick="run(&#039;Hi, Tim! I&amp;#039;ve got two&#039;, &#039;">test</a> The onclick event is not run at all. The above is generated by something like this: <a onclick="run(<?php echo htmlentities($str) ?>)">test</a> How to fix it? ...

How can I load scripts, styles and images from a non-URL source?

I am integrating WebKit (via Qt) into an application. Instead of having WebKit retrieve scripts, CSS files and images via URLs, I want my application to provide them (e.g. retrieved from a database). For example, a "regular" web page may contain this tag: <IMG src="photos/album1/123456.jpg"> Instead of WebKit fetching this image fr...

current url javascript binding into html

http://pastebin.com/KejQT7XQ i am trying to bind current url of my page to this html how can i do that ...

JQuery noob: Show div on hover, click to toggle display..

Hi, been playing with this for a few hours and can't figure it out. jsFiddle example here. Basically I want this to show on hover, and click it to toggle whether it is displayed or not. I thought this was the way to do it with display:block;, but I can't get it to work. Thanks for any help. ...

How to hide elements without having them take space on the page?

I'm using "visibility:hidden" to hide certain elements, but they still take up space on the page while hidden. How can I make them totally disappear visually, as though they are not in the DOM at all (but without actually removing them from the DOM)? ...

Jquery Live Function

Hi! I want to make this script to work as LIVE() function. Please help me! $(".img img").each(function() { $(this).cjObjectScaler({ destElem: $(this).parent(), method: "fit" }); }); the cjObjectScaler script (called in the html header) is this: (thanks for Doug Jones) (function ($) { jQuery.fn.imagesLoaded = funct...

javascript: how to delay submitting data when several checkboxes clicked in short time interval?

I have an array of checkboxes in a complex dynamic-html form. Whenever a user clicks one checkbox, a fairly expensive query is generated and submitted to a remote server. I want to delay this submit action depending on the users next action. If the user clicks several checkboxes quickly, all of the first clicks should be discarded, only ...

why is the <img> alt attribute not always properly displayed

So I have this php script that output an html table with data about some files (like filename, filesize, etc...) I have this javascript function that displays the picture when you hover a tag belonging to the class "preview". For example, if a filename is: somePic.jpg, when you hover somePic.jpg in the table, the picture will appear nex...

How to use $.get data to replace certain elements in a webpage?

I'm using jQuery 1.4.2 to navigate smoothly between similar webpages (in ff3). When clicking on a link, a javascript script should load the new html, filter out the right elements and replace them on the current page. It looks like the $(htmlcode) does not do the thing I expected. The actions below work when loading the page directly, ...