1
vote
Javascript Post on Form Submit open a new window
If you want to create and submit your form from Javascript as is in your question and you want to create popup window with custom features I propose this solution (I put comments above the lines i …
0
votes
How to get the new value of an HTML input after a keypress has modified it?
You can try this code (requires jQuery):
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript"> …
3
votes
How to update HTML “select” box dynamically in IE
You don't need to manipulate DOM for this. Try this instead
var selector = document.getElementById('selectorId');
for (var i = 0; i < data.length; ++i) {
selector.options[s …
1
vote
How to set the focus to the first input element in an HTML form independent from the id?
You also need to skip any hidden inputs.
for (var i = 0; document.forms[0].elements[i].type == 'hidden'; i++);
document.forms[0].elements[i].focus();
…
2
votes
How to set the focus to the first input element in an HTML form independent from the id?
You can also try jQuery based method:
$(document).ready(function() {
$('form:first *:input[type!=hidden]:first').focus();
});
…
1
vote
Identifying list item index - which is a better approach?
If you opt to use jQuery it comes as simple as:
$('ul#list li').click(function () {
var i = this.id.split('-').pop();
alert( i );
});
…
