I have a bootstrap 2.32 modal which I am trying to dynamically insert into the HTML of another view. I\'m working with Codeigniter 2.1. Following Dynamically inserting a boo
I resolved this issue in Laravel by modifing the line below in resources\assets\js\bootstrap.js
resources\assets\js\bootstrap.js
window.$ = window.jQuery = require('jquery/dist/jquery.slim');
to
window.$ = window.jQuery = require('jquery/dist/jquery');