$(document).ready(function() { $('#customRapport').on('click', function(e){ e.preventDefault(); var url = $(this).attr('href'); var title = $(this).attr('title'); var dialogOpts = { bgiframe: true, title: title, width: 500, height: 420, modal: true, open: function(event, ui) { $(this).html('Chargement...'); $(this).load(url); }, close: function() { $('#dialogcustomrapport').remove(); } }; $('
').dialog(dialogOpts); return false; }); });