Skip to content

Instantly share code, notes, and snippets.

@bourg-ismael
Created December 29, 2014 13:35
Show Gist options
  • Save bourg-ismael/79edd53a2ddb492b03c2 to your computer and use it in GitHub Desktop.
Save bourg-ismael/79edd53a2ddb492b03c2 to your computer and use it in GitHub Desktop.
$('#crud-table').fadeTo(50, 0.35);
$.post(this.action, $(this).serialize(), function(data){
$('#crud-table').html(data);
if(form.find('input[name="search"]').val() != '' && $.fn.replaceText) {
$('table.table td, table.table i').replaceText(new RegExp(form.find('input[name="search"]').val(), 'gi' ), '<strong><abbr title="attribute">$&</abbr></strong>')
}
$('#crud-table').fadeTo(50, 1);
$(this).closest('.jarviswidget-loader').fadeOut(100);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment