[jQuery] Re: Convert js to jquery

2009-03-26 Thread mdjamal
Hi, Thanks again, that solves my problem :-) Ciao.

[jQuery] Re: Convert js to jquery

2009-03-25 Thread Richard D. Worth
var val = $("#searchopt").val(); On Wed, Mar 25, 2009 at 9:38 AM, mdjamal wrote: > > Hi Richard, > > Thanks for your help, the tabs switch the class on click, but how to > get the value assigned to the hidden field? > > Regards, > > Jamal

[jQuery] Re: Convert js to jquery

2009-03-25 Thread mdjamal
Hi Richard, Thanks for your help, the tabs switch the class on click, but how to get the value assigned to the hidden field? Regards, Jamal

[jQuery] Re: Convert js to jquery

2009-03-24 Thread Richard D. Worth
$(function() { $(".search-options li").click(function() { $(this).addClass("selected").siblings().removeClass("selected"); return false; }); }); User ID mikode Search Contact by - Richard On Tue, Mar 24, 2009 at 12:40 PM, mdjamal w