I am working on JavaScript code posting to an PHP file and then on success clicking a button. It is working perfectly in Firefox and Safari but is not working in Chrome. In Chrome it successfully POST's to my PHP file but does not click my #couturePaypal button on success . Physically clicking the button with the cursor in the chrome browser works. I am really not sure why this is happening, anyone know why Chrome would handle my code differently?
jQuery("#submitSample").click(function(){
var fullName = jQuery("#fullName").val();
var eMail = jQuery("#eMail").val();
var mailingAddress = jQuery("#mailingAddress").val();
var specialRequests = jQuery("#specialRequests").val();
var inkOne = jQuery("#inkOne").val();
var inkTwo = jQuery("#inkTwo").val();
var inkThree = jQuery("#inkThree").val();
var inkFour = jQuery("#inkFour").val();
var designOne = jQuery("#designOne").val();
var designTwo = jQuery("#designTwo").val();
var designThree = jQuery("#designThree").val();
data = "fullName=" + fullName +
"&eMail=" + eMail +
"&mailingAddress=" + mailingAddress +
"&specialRequests=" + specialRequests +
"&inkOne=" + inkOne +
"&inkTwo=" + inkTwo +
"&inkThree=" + inkThree +
"&inkFour=" + inkFour +
"&designOne=" + designOne +
"&designTwo=" + designTwo +
"&designThree=" + designThree;
jQuery.ajax({ 'type': "POST",
'url': "http://www.famousartistprints.com/sample_form.php",
'data': data,
'success': function(){
jQuery("#couturePaypal").click();
}
});
});
clickevent code – Muthu Kumaran Oct 21 '12 at 3:13