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

2007-05-24 Thread Roger Roelofs
ntil you tab out of the select while firefox fires 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
ier for us to help you. A guess would 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
.toggleClass("show_com"); $(".commenting").slideToggle("slow"); return false; }); then the css would be a { width: 16px; height: 16px; background-image: minus.gif; } a.show_com { background-image: plus.gif; } -- Roger Roelofs