Hi guys, I know this is wierd, but I am using ASP.NET MVC, I have real simple jQuery on 2 views. One view is the Home page and the other is an item details page. This page is opened using an Action Link on Home Page. The jquery on item details page does not fire at all.
$(function() {
alert('Fired!');
$('#contact').hover(function() {
$('#conDetails').addClass("gifBack");
});
});
This jQuery when put on Home page, shows the alert box but not on the details page. Am I doing something stupid here.