I am modifying a website that needs to have a datepicker with yyyy-mm-dd as format.
I am trying JQUERY UI datepicker but the catch is. My site is using
jquery-1.2.6.min.js
and when I paste:
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css" type="text/css" media="all">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js"></script>
as the requisite of date picker from the examples I browsed.
Some of my functions are not working all of a sudden.
Can I somehow use jquery UI without harming the already working website? My task is only to add a datepicker.
Thanks.