How to do a button delay

Are you wondering how to do a Button delay?


In this video you can learn the way of doing it without the in-built features of button delay. It is pretty simple - just copy and paste this code:

<script src="// code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
$(document).ready(function() {
$(' #mybutton').hide().delay(3000).fadeIn(2200);
});
</script>

...and name your button. That's it! 
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.