Skip to content

Instantly share code, notes, and snippets.

@leostera
Last active August 29, 2015 14:16
Show Gist options
  • Save leostera/449cbad7150aa6124494 to your computer and use it in GitHub Desktop.
Save leostera/449cbad7150aa6124494 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$("#events_search input").keyup(function() {
timer = setTimeout(function() {
$.get($("#events_search").attr("action"), $("#events_search").serialize(), null, "script");
$('#events-partial').addClass('animated fadeIn');
window.setTimeout( function(){
$('#events-partial').removeClass('animated fadeIn');
}, 600);
return false;
}, 2000);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment