Skip to content

Instantly share code, notes, and snippets.

@ericakfranz
Created December 7, 2015 22:21
Show Gist options
  • Save ericakfranz/902c39af4b43fcdcbdb7 to your computer and use it in GitHub Desktop.
Save ericakfranz/902c39af4b43fcdcbdb7 to your computer and use it in GitHub Desktop.
Animate the error messages displayed each time they're triggered.
jQuery(document).ready( function($){
$(document).on('OptinMonsterOnError', function(event, data, object){
var l = 20;
for( var i = 0; i < 10; i++ )
$( ".optin-monster-error" ).animate( { 'margin-left': "+=" + ( l = -l ) + 'px' }, 50);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment