Im having a problem delaying links so that the user sees them animate, when he clicks he instantly goes to the page rather then seeing the animation first, when using the following code to delay hrefs it still didnt work:
For CSS Animation ----------------
.dock li:target a {
-webkit-animation: bounce .6s 6 alternate ease-out;
-moz-animation: bounce .6s 6 alternate ease-out;
}
For Delay to let user see the animation first ------------
$('.footer a').click(function(e) {
var anchor = $(this), h;
h = anchor.attr('href');
e.preventDefault();
setTimeout(function() { window.location.href = h; }, 3000 ); {
};
});
Any help please??