Here is the code that I'm currently using:
$(document).ready(function() {
$("h1").delay(1000).animate({
top: (0 px),
opacity: 1,
}, 700, function() {});
});
I'd like to modify it to this:
$(document).ready(function() {
$("h1").delay(1000).animate({
top: (-50 px),
opacity: 1,
}, 700, function() {});
});
However, when I make this change, the jquery functionality ceases to work.
Any suggestions on how to resolve this issue?