Hello, Can anyone figure out why this gives me blank alert boxes in ie7?
$("#bottles a").livequery("click", function(event) {
thetitle=$(this).attr("title");
alert(thetitle);
return false;
});
For each new A tag loaded, ie7 alerts a blank message (FF correctly shows the respective titles) However, when thetitle= $(this).html(), ie7 alerts the correct information. Am I missing something here?