Like MorningZ said, more info would be helpful, but this should work: $('#output').html('SRC: ' + $(this).children('img').attr('src'));
--Erik On Sun, Jun 14, 2009 at 7:02 AM, Logictrap <dlyck...@gmail.com> wrote: > > I need to get the src attribute of an img element that is a sub- > element of 'this' but I can't figure out how to traverse 'this' to get > there. > > The contents of 'this' are: > > <div id="test1"><img src="images/beach1.jpg" width="200" > height="200" alt="beach" /></div> > > this works: > > $('#output').html("ID: " + this.id); > > This does not: > > $('#output').html("SRC: " + this.img.src); > > How do I get the contents of the img.src attribute'?