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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -