Error: Bootstrap's Javascript Requires Jquery On Laravel 5.4
hello guys after mixing laravel template i have some problem with the jquery with Error: Bootstrap's JavaScript requires jQuery and after searcing im still confused whats happen c
Solution 1:
Bootstrap JS works with some jQuery elements.
You need to import jQuery before importing Bootstrap JS.
<scripttype="text/javascript"src="https://code.jquery.com/jquery-3.2.1.min.js"></script><!-- Then import bootstrap js -->
Solution 2:
You have not included jQuery into your HTML. Download that, and include it before bootstrap.
Post a Comment for "Error: Bootstrap's Javascript Requires Jquery On Laravel 5.4"