[JQuery] Objects

Hi,

Iā€™m trying to retrieve an attribute from an img (src) by using javascript & JQuery via DOM. Ive got the code returning ā€œ[object Object]ā€ but am stuck as far as outputting the object/getting the src goes.


function doSwitch(){
    
    alert($(this+" img"));
    

}

$(document).ready(function() {
    $(".moreimgs li a").attr("onmouseover","doSwitch();");                   
});

does anyone have any ideas? :confused: thanks!