Skip to content

Instantly share code, notes, and snippets.

@fegul
Created October 7, 2011 23:45
Show Gist options
  • Save fegul/1271627 to your computer and use it in GitHub Desktop.
Save fegul/1271627 to your computer and use it in GitHub Desktop.
Rails 3.1 UJS callback handling
$(document).ready(function(){
$('.submit').bind('ajax:success', function(){
$('.request_notice').text("You've been successfully added to the list!");
$('.notice').addClass('success').slideDown('2000');
$('#wrapper').animate({height: '+=20'} ) ;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment