extranet/includes/surveillance/script-ajax.js

25 lines
761 B
JavaScript
Raw Normal View History

$(document).ready(function(){
$('input[type=checkbox][name=surveillance]').click(function() {
2009-05-20 15:49:08 +00:00
if($(this).attr('checked')== true){
$('#survForm').css('display','block');
2009-05-20 15:49:08 +00:00
}else{
$('#survForm').css('display','none');
2009-05-20 15:49:08 +00:00
}
});
var options = { target: '#frmSurv', url: './pages/ajax_surveillance.php', beforeSubmit: showRequest, success: showResponse, timeout: 3000 };
2009-05-20 15:49:08 +00:00
$('#frmSurv').submit(function() {
$(this).ajaxSubmit(options);
return false;
});
function showResponse(responseText, statusText) {
$('#frmSurv').replaceWith('' + responseText + '');
2009-05-20 15:49:08 +00:00
}
function showRequest(formData, jqForm, options) {
$('#frmSurv').replaceWith('<div id="frmSurv">Mise sous surveillance en cours...</div>');
2009-05-20 15:49:08 +00:00
return true;
}
});