Right now the application is running in Local Host.
I am using live() method to process the button click event.
$('#more').button() .live('click',function(){
alert("More1");
referenceNo=getRefID(1,3);
//alert(referenceNo);
perform="viewSiteDataDetails";
tabheading="Result";
addTab();
return false;
});
I am Loading the Tab in to Div, when the user click on each menu.
You can see the alert message in Image that i am Attached.The Tab list
the details of a search result.there you can see a link "more" , when
the user click on the more link it loads the more details in the next
tab.if the user click the link("more") at first it displays an alert
message.(only one) But , if the user click the menu(left side) twice or more,
displays the alert message more than one and execute the method twice.. This problem is same when clicking other type of operations like , save, clear...