I\'m not sure why but all the modal functions are not working with me. I checked the version and the load they are fine.
I keep getting this error message:
Most common reason for such problems are
1.If you have defined the jquery library more than once.
The bootstrap library gets applied to the first jquery library but when you reload the jquery library, the original bootstrap load is lost(Modal function is in bootstrap).
2.Please wrap your JavaScript code inside
$(document).ready(function(){});
3.Please check if the id of the modal is same
as the one you have defined for the component(Also check for duplication's of same id ).