Jquery handling very frequent action request.
I has a button bind to a click event.
$("#abc").click(functoin(){
ajaxCall();
finish do post back ;
});
but when i click it very fast and frequently ... it just goes
messy . ..
just like a click on the button will add a tab , when i click very
frequently . it will add the tab but the post back goes crazy like the
content suppose to be append is the previous content.
the callback function will clone the existing template and will up
with value.
any one experience this ?