file.js 191 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 function get_modal_file(url, id, div_content){ $.get(url, function (data) { $(div_content).detach(); $(div_content).append(data); $(id).modal('show'); }); }