javascript - JSLint Missing Semi-colon -


i got error message i'm not sure semi-colon should be. code.

$('.animation1').delay(350).queue(function(){     $(this).addclass("animate-from-top") }); 

in callback, after function addclass() semicolon missing:

$('.animation1').delay(350)                 .queue(function(){                    $(this).addclass("animate-from-top"); // semicolon missing here -----------------------------^                  }); 

Comments