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() {
>
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
2 matches
Mail list logo