22 lines
492 B
JavaScript
22 lines
492 B
JavaScript
$(document).ready(function(){
|
|
|
|
$('#groupesarbo').on('click', function(e){
|
|
e.preventDefault();
|
|
var title = $(this).attr('title');
|
|
var href = $(this).attr('href');
|
|
var dialogOpts = {
|
|
bgiframe: true,
|
|
title: title,
|
|
width: 700,
|
|
height: 600,
|
|
modal: true,
|
|
open: function(event, ui) {
|
|
$(this).html('Chargement...');
|
|
$(this).load(href);
|
|
},
|
|
close: function() { $('#dialogarbo').remove(); }
|
|
};
|
|
$('<div id="dialogarbo"></div>').dialog(dialogOpts);
|
|
});
|
|
|
|
});
|