[jQuery] jQuery Accordian menu help - Find lowest number in array and make it visible

2009-10-10 Thread Nabeel
A user can select multiple options (through checkboxes). Upon submit, the jQuery loads the accordian menu out of the selected options (9). I am trying to show the first one as visible and the rest as collapsed. Now the problem is .. div:lt(1).show makes the first option show (but it is not the fir

[jQuery] Re: Problem with .click even fired as many times the page refreshes

2009-04-09 Thread Nabeel Faruqui
Resolved through this code jQuery('#slick-toggle').unbind("click").click(function() { jQuery('#slickbox').toggle('blind',350); return false; }); On Apr 1, 3:50 pm, Nabeel Faruqui wrote: > I have the followin cod

[jQuery] Re: Jquery simple problem

2009-04-09 Thread Nabeel Faruqui
Resolved through this code. jQuery('#slick-toggle').unbind("click").click(function() { jQuery('#slickbox').toggle('blind',350); return false; }); On Apr 2, 11:45 am, Nabeel Faruqui wrote: > remember that on this page we are u

[jQuery] Re: Jquery simple problem

2009-04-01 Thread Nabeel Faruqui
remember that on this page we are using the ATLAS control also. I think AJAX Atlas might be creating the issue. any resolutions ? On Apr 1, 4:03 pm, Nabeel Faruqui wrote: > Hi, > This is my simple jquery code. I have included it in the head of html > document. > > >      

[jQuery] Problem with .click even fired as many times the page refreshes

2009-04-01 Thread Nabeel Faruqui
I have the followin code in my html jQuery(function() { jQuery('#slickbox').hide('fast'); jQuery('#slick-toggle').click(function() { jQuery('#slickbox').toggle('blind',350); return false; }); }); The problem is that

[jQuery] Jquery simple problem

2009-04-01 Thread Nabeel Faruqui
Hi, This is my simple jquery code. I have included it in the head of html document. jQuery(function() { jQuery('#slickbox').hide('fast'); jQuery('#slick-toggle').click(function() { jQuery('#slickbox').toggle('blind',350); return false;