Got a few lines of coder here im trying to figure out why it isnt working. Its a simple .effect in jquery that is triggered in a click of a button.
$(document).on('click','#sub', function(){
$('.circle').effect( "bounce", {times:3}, 300 );
});
The error im faced with is Uncaught TypeError: $(...).effect
is not a function in console. Thanks for any suggestions!