Hello,
I've created a simple jQuery slider for my website, and I was wondering if it's possible to assign a URL for each pane.
For example /index.html#about will slide to the about tab by default.
Many thanks for your help and responses.
...
In a table structure, I add a hyperlink like this:
<table>
<tr>
<a href='http://www.google.com'>link</a>
</tr>
</table>
But it display as plain text on the browser(IE or firfox) like this:
<a href='www.google.com'>link</a>
not a link point.
who can tell me the reason? thankx.
...
hi, I want to send mail to user daily. For that I will store the database some records. The PHP Script will send each record daily as mail to the user. These should be done automatically without admin or user interaction. Please give me some help or suggestion
...
Hello,
I am developing some basic html pages, i am setting colors of text usimg color code #e7eddf
it seems fine in windows but seems different in mac.
Can you explain me why its happening and also suggest me some work around for that??
I am using firefox on both the mac and windows
...
i had created one web page with header image (style="background-repeat: repeat-x;"). I have need print this page. Then print preview click and i see 2 pages. first page top position include header image and then 2 page is same header images included, but i need only first page with header image, 2 page don't need header image. please hel...
For example I have a 10" display.
This display has either a resolution of 640x480 or 800x600.
How can I position a div always at the same display-position (for example 5cm from the top) regardless of which resolution is enabled?
This doesn't work, does it?
top: 5cm
...
Hai guys,
I have three textboxes and one listbox... If the user clicks the first textbox and then click a list item the selected item must be set as value to the textbox... I want this in javascript....
...
I have a website with a form that uses PHP to send the form data. Is there a way to create a progress bar on the page that looks like it is in action, so that people don't click the button more than once after it's clicked and sending the PHP information.
Thanks.
...
Is it possible to make an iframe use a POST rather than a GET request? I am not trying to post a form into the iframe but load the iframe depending on data generated on the server.
Unfortunately, I can't use Javascript in this case (because it is the company's policy that the checkout must be possible without JS).
...
I have:
<input id="ONE" type="..." ...>
I want to replace this with:
<select id="TWO">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<select>
How do I do that?
...
I am working on a Java project using spring2 and Maven.
I have already incorporated JSLint4Java into Maven, but now find myself needing to do some further validation.
There are a number of core pages in the build i.e. home page, search page etc. that I want to automatically test the final HTML output for specification validity i.e. Val...
How do you center all form label and input fields using CSS?
How would you do this for a form with label text (block) on top of the input field?
#fieldset label {
display: block;
}
#fieldset input {
font-size: 0.8em;
height: 1.2em;
width: 15em;
}
...
Hi,
I'm trying to make a rich text editor with the background set on iframes body.
The background is repeated in y axis and when the user types in the string without any spaces the horizontal scroll appears and the background is moved to the left. I fixed it with overflow-x:hidden in all browsers except IE 8 where the behaviour is the s...
I have input tags with a user defined attribute as:-
<input name="grp1" type="radio" myUDF="value1" />
<input name="grp1" type="radio" myUDF="value1" />
How can i extract the value of myUDF?
The scenario is :-
$("input[name=grp1]").click(function(){
this.attr("myUDF"); // This throws the exception Object doesnt support this prop...
I had a script which sends sms alerts everyday. I want it to send automatically send sms by fetching message from database. Can I do it without cron. Is there any other solution. Plz help
...
Im trying to make a pop-up like window using jquery and its modal box. First I load the content from a html file:
$("#test").load("test.htm");
Then I load the popup:
$("#test").dialog("open");
This works like it should, the content of test.html is injectet into the modal pop-up. There is only one think that is wrong, and that is th...
I need to generate spaces in a HTML file.
...
I want to reset the value of a web page using JavaScript reset function. Which operation is the JavaScript performing first: the reset or a clear? And what is the difference in between the two?
Also, how can I retrieve a value using reset function?
...
Hi All,
I'm trying to create a custom pop-up window using JavaScript which can hold a form, and then use the contents of this form on the original page.
What I have is a large table split into several sections which hold text. Each section has a title and a body (Which are both table cells which unique IDs). I then use JavaScript to pu...
I am using CSS to create a 3-column page layout with header and footer. Take the Left_Col div, for example, which has a width of 200px. I would like to have a left and right padding of 10px for this div such that the text within the Left_Col essentially starts at pixel 10 and wraps at pixel 190.
In the below example, to acheive this, I ...