extranet/www/js/greffes.js

22 lines
484 B
JavaScript
Raw Normal View History

$(document).ready(function()
{
$('.dialogcmd').live('click', function(){
var title = $(this).attr('title');
var href = $(this).attr('href');
var dialogOpts = {
bgiframe: true,
title: title,
width: 550,
height: 300,
modal: true,
open: function(event, ui) {
$(this).html('Chargement...');
$(this).load(href);
},
close: function() { $('#dialogcmd').remove(); }
};
$('<div id="dialogcmd"></div>').dialog(dialogOpts);
return false;
});
});