$(this).html();

$(this).html();

$(this).html();

I want to dig out all the images in an rss feed and display them using an image plugin. so I have something like this.

  1. $('div#rss_feed p a img').each(function (){
  2.       #('#imageviewer').append(this);
  3. });
Now that worked but I need each image to be in an li element

  1. $('div#rss_feed p a img').each(function (){
  2.       var h = '<li class="image"><a href="">'+$(this).html()+'</a></li>';
  3.       #('#imageviewer').append(h);
  4. });
I know I cant use $(this) like the above but I want to do something of the same effect.  Is there a way to get the html code of whatever this is pointing to?