Hi Sam,
Just do one thing, hover method takes two parameter in second parameter you can do some like that:
$("#anchorNotification").hover(
function () {
$.ajax({
type:"get",
url: $.getUrl("Notification"),
contentType:"application/json;charset=utf-8",
dataType:"html",
success:function (data) { $("#dvNotification").html(data); $("#dvNotification").slideDown(); },
error:function (data, status) { }
});
},function () { });
Posted On:
18-Nov-2015 04:06