6
votes
Using javascript and jquery, to populate related select boxes with array structure
I prefer data structure like this:
var carMakers = [
{ name: 'Honda', models: [
{ name: 'Accord', features: ['2dr', '4dr'] },
{ name: 'CRV', features: ['2dr', 'Hatch …
1
vote
Referencing a javascript object literal array
The structure:
var cars = [
{ name: 'Honda', models: [
{ name: 'Accord', features: ['2dr', '4dr'] },
{ name: 'CRV', features: ['2dr', 'Hatchback' …
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
Is JavaScript really the best we can do for client scripting?
I don't think you "understand the pragmatic issue that JavaScript is simply what we have to work with now". Actually it is very powerful language. You had your Java applet in browser for years, and …
2
votes
Is it reasonable to assume my visitors have javascript enabled?
Is it reasonable to assume visitors
have javascript enabled and simply
have an unusable site for those who
don't?
There are actually two questions, and th …
2
votes
What is the most stable modal dialog implementation across browsers to use from javascript for a web app?
I used jqModal few times and I'm very satisfied. It is pretty configurable yet very light weight.
…
1
vote
What is the best practice to use ExtJS with Asp.net and WCF in .NET 3.5?
I used ExtJs in conjuction with ASP.NET only through web services. It works just fine if you are willing to work without "Page" and all that stuff.
…
1
vote
jQuery animation
Try to apply the same animation effects to the shadow element(s).
I don't know the exact technique used in jquery.dropshadow.js, but I suspect it creates copies of your shadow casting elements and …
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"> …
0
votes
Forcing Google Analytics Tracking Code to Sleep
This should work:
window.setTimeout(pageTracker._trackPageview, 5000);
…
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 );
});
…
2
votes
11
votes
