[jQuery] Re: attr - problem getting attributes in IE6 ... IE7 and FF are fine

2008-01-16 Thread skatta
looks like the attribute "name" is not supported in IE6 On Jan 16, 12:50 pm, skatta <[EMAIL PROTECTED]> wrote: > in this issue First off ... i'm using ajax to pull elements into the > DOM. So my code uses this (there are probably better ways to do > this) ... > > $(document).ready(function() { >

[jQuery] Re: attr - problem getting attributes in IE6 ... IE7 and FF are fine

2008-01-16 Thread skatta
oops ... in my example i used event.target.id ... it's event.target like so ... $(document).ready(function() { $('body').click(function(event) { if ($(event.target).is('.touchRfq')) { var touchco = $(event.target).attr("name"); alert(touchco); }); }); }); On Jan 16, 12:50 pm, skatta <[E