Hi,
I have this script which shows hidden images when mouse hovers over link
$(document).ready(function(){
$("#test").on("mouseover mouseout", "li", function () {
$("#" + $(this).data("img")).toggle();
});
});
It works with other versions of jquery but not with version 1.4.2, which I really need to use for other scripts on my page. Anybody know how this script can be changed to work in this older version.
Thanks
Angela