[jQuery] Re: Select box change event infinite loop in ASP.NET

2007-05-24 Thread Roger Roelofs
the onchange event every time you make a new selection (at least on my mac) You can save yourself a lot of debugging time by using the firebug firefox extension. hth Roger, -- Roger Roelofs [EMAIL PROTECTED]

[jQuery] Re: alerting the value of radio button onfocus

2007-05-23 Thread Roger Roelofs
be something like this... $(function() { $(#test/[EMAIL PROTECTED]'radio']).bind(focus, function() { if ( this.checked ) alert(this.value); }); }); -- Roger Roelofs

[jQuery] Re: show/hide revisited

2007-05-20 Thread Roger Roelofs
; } -- Roger Roelofs