Why don't you use two versions of jQuery.
Refer here
jQuery noConflict: Using multiple jQuery versions on the same page
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
var $j = $.noConflict(true);
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript">
alert($.fn.jquery);
if ($j.browser.msie) {
alert("This browser is Internet Explorer.");
} else {
alert("This browser is not Internet Explorer.");
}
</script>
Demo