2013-02-17 16:41:39 +00:00

31 lines
658 B
JavaScript

$(document).ready(function(){
//Boite de dialog surveillance
$('.dialogsurv').on('click', function(){
var title = $(this).attr('title');
var href = $(this).attr('href');
var dialogOpts = {
bgiframe: true,
title: title,
width: 500,
height: 350,
modal: true,
open: function(event, ui) {
$(this).html('Chargement...');
$(this).load(href);
$('#dialogsurv').keypress(function(e){
if (e.keyCode == 13){
e.preventDefault();
survSubmit();
}
});
},
close: function() {
$('#dialogsurv').remove();
}
};
$('<div id="dialogsurv"></div>').dialog(dialogOpts);
return false;
});
});