Form is not getting submitted second time.
$(document).ready(
function(){
$(
"input.pricerUpdate").click(function() {
//document.getElementById(id).checked = true;
//alert("hello");
$.post(
"/cart1/programming_americanCore_process.action", $("#formBody").serialize(), function(data){
updateSummaryBar(data);
});
return
false;
});
});
When i click the button first time the form is submitted & i get the response. After selecting another radio button...when i again submit the same form...nothing goes to server... action is not hit on the second time & i get the previous old response again.
Please help.