[jQuery] Help with horizontal sliders (accordion)

2008-12-18 Thread TurboRogue
bzaks/erg/u7.html) Also, if there is any way to get an actual slide effect, rather just the instantaneous width change (say with using .animate() maybe?), that would be a bonus. But for now, I'd at least like to try to get this part working properly. Any help would be greatly appreciated. Thank you:) -TurboRogue

[jQuery] Re: Reseting a drop down list to first option

2008-10-10 Thread TurboRogue
Looks like I ended up answering my own question (which is always the best way cause it means I learned something!):) $("#showall").click(function(){ $("form").each(function() { this.reset(); }); }); On Oct 10, 3:14 pm, TurboRogue <[EMAIL PROTEC

[jQuery] Re: Reseting a drop down list to first option

2008-10-10 Thread TurboRogue
Looks like I ended up answering my own question (which is always the best way cause it means I learned something!):) $("#showall").click(function(){ $("form").each(function() { this.reset(); }); }); On Oct 10, 3:14 pm, TurboRogue <[EMAIL PROTEC

[jQuery] Reseting a drop down list to first option

2008-10-10 Thread TurboRogue
I'm just starting my initial journey into jquery, and I basically need the jquery syntax equivalent of this: document.formName.selectName.selectedIndex = 0; document.formName.selectName.options[0].selected = true; Here is the relevant code (this is supposed to happen once an id'ed element is cl