Here is an example -
$('ul li').click(function(){
var imageSource = $(this).find('img').attr('src');
console.log(imageSource);
});
imageSource should contain the path information for the image. $(this) refers to the clicked list element, find('img') finds the image tag associated with $(this) and attr('src') gets the source info from the image tag. Does that help?