The object on the page
<DIV style="TEXT-INDENT: 0px; VISIBILITY: inherit" id=button46 jQuery16107163179349561973="2">
<A title=Exit href="javascript:void(null)" name=button46anc>
<IMG style="CURSOR: pointer" border=0 name=button46Img alt=Exit src="images/btn-exitoff.gif" width=66 height=39>
</A>
</DIV>
I need to get the value of the title attribute from the div.
Put a few hours into this with no luck (all return undefined)
$('div [id^="button"]').bind('click mouseover mouseout submit',function(event){
testThis = $(this.children('a'));alert($(testThis).attr('title'));
testThis2 = $(this.find('a'));alert($(testThis2).attr('title'));
});
Thanks in advance for saving th rest of my hair.