problem solved ...
I just added e.stopImmediatePropagation(); to the click function ... and it worked ... None of the following functions worked ...
e.preventDefault(); e.stopPropagation(); return false
--------------------- --------------------- CODE
jQuery("#ok").click(function(e){ alert("Alert"); e.stopImmediatePropagation(); });
Click here for more information on jQuery Events ..
source share