html

IE 7 Debug Issue - mystery <li> indent on first line

I am building a website, www.vitaminjdesign.com In IE7, you will notice that in the footer, the first line of list items are indented a little bit. Does anyone know what CSS fix I need for this? THanks ...

Tell jQuery to execute certain code only once.

Is there any way to tell jQuery to do something only once? E.g. right now, I need jQuery to on click of div, append some HTML. Then, every time someone clicks that div again it toggles hide/show. Is there a way to do this? I'm trying not to be too confusing. EDIT: Solved! ...

Newbie help: mouseover on image sometimes returning wrong image from image map

Have www.website.com/sds/ (index.htm) set up so that a mouseover on various places shows an image. For some reason image 2.jpg and 3.jpg (move mouse back and forth on blue balloon) are both showing up (not at same time) when you mouse over the blue balloon. Only 3.jpg (child in chair) should show up on the blue balloon. 2.jpg (found on ...

using javascript to add form fields.. but below, not to the side?

Hello. So as I click the button, the javascript adds new fields. Currently it adds the new text box to the side.. is there a way to make it add below? I guess as if there were a . Here is the code. Thanks! <html> <head> <script type="text/javascript"> var instance = 1; function newTextBox(element) { instance++; var newI...

creating input field for html form... but adding a 'label' for it as well?

I have an html form. When you click the button, a javascript function adds a new field. I'm trying to have the function also add a 'label' for the field as well. I've tried using document.createElement("LABEL"), but that doesn't let me change the innerHtml (or maybe I'm doing it wrong..), nor add a closing Here is my code. Thanks! ...

html form calls on a php file.. but variables are not read

I have a simple html file with the code below. It calls submitform.php. But nothing gets displayed. Any ideas? <html> <body> <form action=submitform.php method=GET> First Name: <input type=text name=first_name size=25 maxlength=25> Last Name: <input type=text name=last_name size=25 maxlength=25> <p> <input type=submit> </form> </body...

Open PDF in a new window on image click

I want to open a PDF file in a new browser window when user clicks on the image. I saw the other links but not found what I am looking for. Any PHP/HTML way to do this? ...

adding inputs to html form, using javascript

Hello. I have an html form that I would like to add inputs fields to using javascript. Originally I had the input fields by themselves underneath the 'body', and the following was able to add the fields: // Create number input field var phoneInput = document.createElement("INPUT"); phoneInput.id = "phone" + instance; phoneIn...

Problem with CSS

Am a newbie in CSS and am writting this code and the main content and the sidebar are falling out of place. Anyone know why? Here is the HTML and CSS used <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; <html> <head> <title> WEB HELPDESK</title> <meta http-equiv="Content-Type"...

How to disable user's input while loading page with jquery?

I have a heavy-jquerized page with some links, various user inputs and such. I use jquery, with actions defined in a $(document).ready( function() { .... } ); block. But while the page is loading (or, even worse - reloading), and a user clicks a link, the href action from it is triggered, as the javascript isn't loaded / active ...

Configuring Android Web Applications

iPhone web apps have four configuration features available (not including the HTML5 application cache) to configure how web pages behave when you save the web page to the home screen as a bookmark. You can specify the home page icon. You can specify a startup image that displays while the web page is loading. You can hide the browser U...

Performance in HTML

how to maintain Version for css and Java script in html how to compress java script in run time ...

how to convert rss to html using java/j2ee?

.How can i convert rss to html to display it effectively? ...

Table Row's onclick event should not affect only one Table data

I have a table in which all the rows are formed using a loop and all data are formed using a inner loop. I have a onclick event for all the rows and the destination will differ, according to the row that is clicked. I want this onclick event for the entire row except the first TableData. How to use a javascript function that will disable...

Is it possible to submit a form in asp.net without any server controls

Hai guys, I had this doubt for a long time now. Now being a part of stackoverflow i ve decided to ask it... Consider form without Runat="server" and it contains two html text boxes and a html button all without Runat="server", now my is it possible to submit this form and i have to insert the values in my DB... ...

HTML Imagemap - Border

Is it possible to add a css border to a HTML Imagemap? ...

Overlaying <span> doesn't work in IE6

<li> <span>overlay</span> content </li> li { position: relative; height:65px; overflow: hidden; } li span { background: url(../img/bullet_grey.png) no-repeat; width: 20px; height: 20px; position: absolute; top: 50px; left: 10px; } This works in all browsers except IE6, which just hides the SPAN so...

How to center horizontally div inside parent div

How do I center a div horizontally inside its parent div with CSS? <div id='parent' style='width: 100%;'> <div id='child' style='width: 50px; height: 100px;'>Text</div> </div> ...

override overflow:hidden with z-index

Am using coda_bubble jquery plugin, and i need to make my bubble pop out within an overflow hidden div. here is my sample code. <html> <head> <title>Override overflow:hidden</title> <link href="http://www.myjquery.co.uk/jslib/jquery_plugins/coda_bubble/bubble.css" rel="stylesheet" type="text/css" media="all" /> <script type="text/javasc...

iFrame Scrollbars Issue in MS IE6

Hi, Can anyone pls provide some reasons as to why my iframe that displays a report within it, shows a horizontal scrollbar even though the width of the report within it seems to be smaller than the width of the iframe? There seems to like a small gap that causes the horizontal scrollbar to appear. Another thing I've noticed is that w...