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
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($)
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("
3 matches
Mail list logo