I have a page operation that uses something like:
$(\'#thetable tbody\').replaceWith(newtbody);
in an ajax callback. Sometimes, if the user
Be sure to use return false; to terminate your function(){} construct.
return false;
function(){}
The event trigger may be trying to execute the default action of the target DOM element i.e., < a href="" >;
< a href="" >;