A button click event triggers filtering on a data table. While JQuery is processing that , the page should display a loading image.This is not an ajax request.
This is my code that doesn't work :
$("somebutton").click(function(){
$("#loader").show();
// do some stuff.....
//...
// now hide the loader again
$("#loader").hide();
});
Any ideas?