What I am trying to do is to fadeout div and then reload page, after page reload fadeIn div and stop reloading page. The problem here after fadeOut dive reloading does not stop so fadeOut does not work ?
Code:update
$(document).ready(function () {
$("#myDiv").fadeOut('slow', function () {
location.reload(true);
$("#myDiv").fadeIn(4500);
});
});