• Hey

    I have template with html5 and modernizr, but i have jquery effect problem.

    I need to make sweet fadeIn <-> fadeOut on page reload.

    I made simple function, but it is not always good in time – sometimes container is still reloading after fadeIn, i need connect it with modernizr reloading. But i do not have any clue…

    $("a[rel='nvi']").click(function () {
        	$('#content').fadeOut(600).delay(1500).fadeIn(600);
    	});
    
    	$(window).bind('popstate', function() {
    		$('#content').fadeOut(600).delay(1500).fadeIn(600);
    	});
  • The topic ‘HTML5 modernizr’ is closed to new replies.