I have link button which is kept in the update panel. When i kept this in the update panel. Hover function called through the Jquery not performing correctly, I could not see hover css appliied. When i removed update panel, it is showing correctly.Following is the jquery applied.
$(document).ready(function () {
$("#MainContent_LinkGeneral").hover(
function () { $(this).addClass("TabGeneralHover"); },
function () { $(this).removeClass("TabGeneralHover"); }
);
});
why css are not updated in updatepanel.