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
...
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!
...
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 ...
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...
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!
...
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...
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?
...
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...
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">
<html>
<head>
<title> WEB HELPDESK</title>
<meta http-equiv="Content-Type"...
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 ...
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...
how to maintain Version for css and Java script in html
how to compress java script in run time
...
.How can i convert rss to html to display it effectively?
...
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...
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...
...
Is it possible to add a css border to a HTML Imagemap?
...
<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 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>
...
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...
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...