$(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(); } }; $('
').dialog(dialogOpts); }); });