Skip to content

Instantly share code, notes, and snippets.

Created April 25, 2014 04:51
Show Gist options
  • Save anonymous/11277981 to your computer and use it in GitHub Desktop.
Save anonymous/11277981 to your computer and use it in GitHub Desktop.
Gist created from Brackets
// Search for a player
$(document).on('click', '.player-search form button[type="submit"]', function(e) {
var $dt = $("#search-results-table").data("datatable")
, o = $dt.options
// Show the search results
$(".search-results").fadeIn();
o.filter.term = $("#term").val();
$dt.render();
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment