I have a from in my page which I want to submit, and I using an ajax call:
$(document).ready(function() {
$("#password_change").click(function() {
$.ajax({
type: 'POST',
url: 'set_password.php',
data: 'password=' + $('#password').val(),
success: function(data) {
var obj = JSON.parse(data);
if(obj.success == '1') {
$('#message').show();
}else{
$('#fail_message').show();
}
}
});
});
});
And my form:
<form id="password_form" name="password_form" action="" method="POST" style="">
<input type="password" class="required" id="password" value="" />
</form>
The first time I click the submit button, I get the right message and everything seems to work fine. Then I click again the submit button for second time, but then the data that I am sending through the ajax call are empty, so I am getting a wrong reply for the ajax call.
Does anyone have an idea why could this happen?
Thanks in advance
$.ajaxcall and just do analert($('#password').val())on the click event, to make sure that it's not something in the client JavaScript code. If the alert doesn't fire more than once then you know it's a JavaScript issue at least. – Anders Holmström Sep 21 '12 at 8:59