Skip to content

Instantly share code, notes, and snippets.

@fegul
fegul / gist:1271627
Created October 7, 2011 23:45
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'} ) ;
});
});