I'm simply trying to delay an action before it starts but I seem to be having some trouble.
This is my code:
$(document).ready(function(){
$(".action1").bind("load", function () { $(this).fadeOut('slow'); });
$(".action2").bind("load", function () { $(this).fadeIn('slow'); });
});
And I basically want to delay the first action from taking place just for a few seconds (onLoad).