Basically when using jQuery UI version 1.11.4 or later, do not use jQuery version 2.x.x. Use jQuery version 1.10.x ~ 1.12.x without the jquery-migrate library.
// Works! <link rel="stylesheet" href="jquery-ui-1.11.4/jquery-ui.css"> <script type="text/javascript" src="jquery-1.12.0.js"></script> <script type="text/javascript" src="jquery-ui-1.11.4/jquery-ui.js"></script>
// Works! <link rel="stylesheet" href="jquery-ui-1.11.4/jquery-ui.css"> <script type="text/javascript" src="jquery-1.10.2.js"></script> <script type="text/javascript" src="jquery-ui-1.11.4/jquery-ui.js"></script>
// Does Not Work! <link rel="stylesheet" href="jquery-ui-1.11.4/jquery-ui.css"> <script type="text/javascript" src="jquery-1.12.0.js"></script> <script type="text/javascript" src="jquery-migrate-1.2.1.js"></script> <script type="text/javascript" src="jquery-ui-1.11.4/jquery-ui.js"></script>
// Does Not Work! <link rel="stylesheet" href="jquery-ui-1.11.4/jquery-ui.css"> <script type="text/javascript" src="jquery-1.10.2.js"></script> <script type="text/javascript" src="jquery-migrate-1.2.1.js"></script> <script type="text/javascript" src="jquery-ui-1.11.4/jquery-ui.js"></script>
// Does Not Work! <link rel="stylesheet" href="jquery-ui-1.11.4/jquery-ui.css"> <script type="text/javascript" src="jquery-2.1.4.js"></script> <script type="text/javascript" src="jquery-ui-1.11.4/jquery-ui.js"></script>
No comments:
Post a Comment