Klaus Hartl schreef:
No, that will throw an error, because at this point: $("#k img").get(i) you already have a reference to the DOM element itself. Thus the following will work:

$("#k img").get(i).src

or stick to jQuery:

$("#k img").attr('src')

it's it $("#k img").eq(i).attr('src').

--
David Duymelinck
________________
[EMAIL PROTECTED]

Reply via email to