I got that error message but I'm not sure where a semi-colon should be. This is the code.
$('.animation1').delay(350).queue(function(){
$(this).addClass("animate-from-top")
});
I got that error message but I'm not sure where a semi-colon should be. This is the code.
$('.animation1').delay(350).queue(function(){
$(this).addClass("animate-from-top")
});
In the callback, after the function addClass()
the semicolon is missing:
$('.animation1').delay(350)
.queue(function(){
$(this).addClass("animate-from-top");
// semicolon missing here -----------------------------^
});
like this
$('.animation1').delay(350).queue(function(){$(this).addClass("animate-from-top");});