$(...).datepicker Is Not A Function
Datepicker can´t run in this page, but the script of jquery-ui is imported. Where is the conflict? Thanks. Datepicker is not a function This is my script $( document ).ready(funct
Solution 1:
You are using two version of JQuery that creates the confliction . Use only one instead of two.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"> </script>
<link href="../css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="../css/simple-sidebar.css" rel="stylesheet">
<!--JQUERY-->
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
Post a Comment for "$(...).datepicker Is Not A Function"