I am using 2 JQuery versions on my website, but there is a problem with loading both versions at the same time. If one runs, then other one can't run. I am using Date Time picker and High charts. I have already searched for code to handle JQuery conflicts, but I don't understand them. I am new to JQuery.
<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>
These are used for the date time picker.
<script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"> </script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
And these is used for the high charts. Please tell me a simple way that I can load both at the same time.