Can anyone please help me I am struggling with this problem for the past few day. Actually I included all the necessary plugins\' but still the
$(\'#datepicke
I just had this issue and solved it using $.noConflict();:
$.noConflict();
Instead of $( '#datepicker' ).datepicker();, I used:
$( '#datepicker' ).datepicker();
$.noConflict(); jQuery(document).ready(function ($) { $("#datepicker").datepicker(); });