7
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 …
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
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
Is there a better jQuery solution to this.form.submit(); ?
Your question in somewhat confusing in that that you don't explain what you mean by "current element".
If you have multiple forms on a page with all kinds of input elements and a button of …
0
votes
Replace particular text after the page is loaded with jquery
I think you will find jquery-translate useful. It even has method that you need, namely: $(). …
