bootstrap 4 modal popup remote url

Solutions on MaxInterview for bootstrap 4 modal popup remote url by the best coders in the world

showing results for - "bootstrap 4 modal popup remote url"
Tiago
07 Mar 2020
1$('body').on('click', '[data-toggle="modal"]', function(){
2        $($(this).data("target")+' .modal-body').load($(this).data("remote"));
3    });  
4