[jQuery] Re: Safari/WebKit bug with maxWidth?

2008-12-11 Thread Syamsundar
Hi Dan, I'm having the same issue. Is this a known issue with the webkit engine? I searched in the webkit wiki too, but couldn't find anything useful. If anyone else can shed some light on this, would really help me with some peace of mind. If possible an alternate solution to carry over max-wi

[jQuery] Re: After some clicking it won't show up

2008-07-25 Thread Syamsundar
Try this. this should work! $("a.help").click(function() { var showing = $(this.hash).css('display'); $('.help-popup').hide(); if(showing == 'none') $(this.hash).show(); return false; }); Thanks, -Syam IschaGast wrote: > > >> may be the following will work. >> >> jQuery(function($)

[jQuery] Re: Highlight table when checkbox is checked

2008-07-25 Thread Syamsundar
I guess your checkbox is inside your table row. Something like this: If that's the case, the following should work. You can adapt this example to your specific needs too. $("#input:checkbox").click(function(){ if($(this).attr('checked') == 'checked'){ $(this).parents("