22 lines
530 B
JavaScript
22 lines
530 B
JavaScript
$(document).ready(function(){
|
|
$("#passwordbutton").click( function(){
|
|
// Serialize the data
|
|
var post = $( "#passwordform" ).serialize();
|
|
$('#passwordchanged').hide();
|
|
$('#passworderror').hide();
|
|
// Ajax foo
|
|
$.post( 'ajax/changepassword.php', post, function(data){
|
|
if( data.status == "success" ){
|
|
$('#pass1').val('');
|
|
$('#pass2').val('');
|
|
$('#passwordchanged').show();
|
|
}
|
|
else{
|
|
$('#passworderror').html( data.data.message );
|
|
$('#passworderror').show();
|
|
}
|
|
});
|
|
return false;
|
|
});
|
|
} );
|