I have this code for a hover effect, it was working, but now won't. jQuery is working, but events from jquery aren't...
$(document).ready(function () {
$("#logoimg").hover(function () {
$("#logoimg").attr("src", "Media/imgover.png");
$("#logoimg").animate({ width: 420 }, 300);
}, function () {
$("#logoimg").attr("src", "Media/imgout.png");
$("#logoimg").animate({ width: 400 }, 300);
});
});