I want the notify to occur only after the unblock event, however both occur together. I am pretty new to JQuery.
function isSuccess()
{
$(function () {
setTimeout('unblock()',1000);
$.notifyBar({
html: "Thank you, your settings were updated!",
delay: 2000,
animationSpeed: "normal"
});
});
}