First entry not easy to click issue in firefox,a bug?
Pay attention to the part in blue in the first table. Can check out the problem here EDIT reproduce by double click at the upper part of first entry. ...
Pay attention to the part in blue in the first table. Can check out the problem here EDIT reproduce by double click at the upper part of first entry. ...
Hello all, I am making use of the JQuery fancy box - in this pop up box I have a form with a few select fields and upon changing these slect fields a value in a span element should change. I have got this to work (actually with stackoverflow users help) but the solution doesn't work in IE8...suprise...suprise. I make changes to the sel...
I've got a requirement where I need to save HTML documents in memory as Word .DOC files. Can anybody give me some links to both closed and open source libraries that I can use to do this? Also, I should edit this question to add the language I'm using in order to narrow down the choices. Thanks! ...
In apache's doc about SSI it says that: "SSI is a great way to add small pieces of information, such as the current time. But if a majority of your page is being generated at the time that it is served, you need to look for some other solution." That's alright but is somewhat unclear on some matters. For example does it mean that using S...
I'm trying to change z-index of table cell using JS to bring it on top. Z-index only works when CSS 'position' is set to smth different than normal. The problem is that setting 'position: relative' and z-index for does not work in opera. So, i'm looking for a way to determine, whether was brought to the front or not without using z-in...
I have a form with this inputs: <input name="person[name]" value=""> <input name="person[surname]" value=""> <input name="person[age]" value=""> when I submit, how can i assign that html array to a variable, cause request.POST.getlist('person') doesn't work, i been checking for other post but the only one i found doesn't have anything...
I want a textarea with no scrollbars. This is done by setting overflow to hidden. However, in Firefox, if I add a new line to the bottom of the textarea, that new line is not visible - the textarea fails to scroll down to the new line. How can I get Firefox to follow the IE/Opera behaviour, whereby if a new line is added, the textarea au...
Hi, im trying to set the height of two divs on my page, because my page content is dynamic. But it wont work. The height is just one screen of the divs. The divs contain side borders, thats why it has to be all the way. Any ideas why the height only = one screen height? function bodyHeight() { var scnHei; if (self.innerHeight)...
If I want to select every image which it's alt is Home for example, I can do something like this: $("img[alt='Home']") But how can I select every elements which their width CSS property is 750px for example in a single selector? EDIT: If there is no such selector, is there any plugin, or any plans to do it in the next jQuery versions...
Hello people, I want to insert this margin, but I don't know why... I want it to be like Twitter or TwitPic My CSS: body { margin: 40px; margin-bottom: 50px; padding: 0; background-color: #edece9; font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana"; font-size: 13px; c...
How to make a table like structure (design) with help of div and [CSS][1]? to show tabular data on html page. i don't want to use <table> <tr> <td> . I work on custom made CMS in my company and for a page cms prdouces xhtml in div tags so xhtml code is not in my hand so therefore i want to show table like data without table. EDIT: My ...
I have an html form and the submit button says "submit query". How can I remove this text? I am using a background image for the submit button and this text is messing up the button :( Any help would be greatly appreciated. ...
Apart from using image on the button, how can I write XY on the HTML button? ...
I had the following HTML page rendering to use the Google Maps API. This has been running for about two months and all the sudden just stopped working. I am trying to get the point with the getLatLng function and it appears to be returning null everytime. Has anyone experienced a similar issue or see anything wrong here? Any help is appr...
I would like to hide any text matching a pattern from any HTML page, before it is displayed. I tried something like that with Greasemonkey : var html = document.body.innerHTML; html = html.replace( /some pattern/g, '???' ); document.body.innerHTML = html; The text I want to hide is correctly replaced with '???', but for a brief momen...
Let's say I'm transforming a multiple-choice quiz from an arbitrary XML format to HTML. Each choice will be represented as an HTML <li> tag in the result document. For each choice, I want to add an HTML class of correct to the <li> if that choice was the correct answer. Additionally, if that choice was the one selected by the user, I wan...
can u please help me, how to play this in internet explorer? any suggestions to play this in other player <iframe name="go4entFrm" src="http://go4ent.com/frames/go4entFrm.php?urls=363633&amp;isdwnld=true&amp;siteName1=MUSICKING.IN" border="0" frameborder="0" height="366" scrolling="no" width="458"></iframe> please help me........
I'm trying to create a <table> that doesn't exceed a certain width (let's say 500px), even with borders of any size. Normally, if I do: (HTML) <div> <table> <tr> <td>This is a test.</td> </tr> </table> </div> (CSS) div { width: 500px; } table { width: 100%; border: 10px solid #000; } I'm going to end up wi...
Hey, I'm desperate right here. jQuery: $(".rotateme li a").click(function(){ var curid = $(this).attr('id'); $('#box'+curid).fadeIn('slow'); return false; }); $('.close').click(function() {$(this).parent().fadeOut("fast");}); Html (the .rotateme li a bit) <ul class="rotateme"> <li><a href="#" id="ca1"><img src="...
I can easily create a html input field that has text already in it. But when the user clicks on the input field the text doesn't disappears but stays there. The user then has to manually remove the text to type. How can I create an input field where when the user clicks on the input field box the text then disappear? ...