Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jquery and jqueryUI conflicting

Is jquery 1.3.2 conflicting with jqueryui 1.8.4? I get the error "Too much recursion" (using the code below).

When I combine jquery 1.3.2 with jqueryui 1.7.2 I don't get this error, but it breaks my code...

Is there somewhere a reference table which jquery version works with which jqueryui code?

<html>
<head>
<title>This is the title</title>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'></script>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js'></script>
</head>
<body>nothing here</body>
</html>
like image 718
bart Avatar asked Jan 29 '26 06:01

bart


1 Answers

Can't you just include the 2 most recent versions? Works for me on a number of projects.

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script> 
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
like image 102
alex Avatar answered Jan 31 '26 21:01

alex



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!