I am currently developing a web application in advanced Java and incorporating various external libraries such as choosen.js, summernote.js, Bootstrap, BootstrapValidator, etc. I have encountered some errors and am struggling to pinpoint the root cause of these issues. If anyone has any insights or solutions related to this matter, I would greatly appreciate your assistance. https://i.sstatic.net/xv46l.png
Any help in finding a solution is welcome.
Below is the code snippet for Summernote:
$(document).ready(function(){
$('.summernote').summernote({
height:270,
minHeight: null,
maxHeight: null,
focus: true,
});
});
List of libraries being used:
<link href='https://fonts.googleapis.com/css?family=Spinnaker' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="assets/css/adminstyles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="assets/js/bootstrapValidator.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chosen/1.4.2/chosen.jquery.js"> </script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.0/summernote.js"></script>
<script type="text/javascript"
src="${pageContext.request.contextPath}/admin/assets/js/myscripts.js"></script>
AJAX calling code:
Insert AJAX calling code here
Choosen library code:
Insert Choosen library code here
BootstrapValidator code:
Insert BootstrapValidator code here