wzr1one Posted October 15, 2013 Share Posted October 15, 2013 Siemanko, mam mały problem z jquery. Mój prestashop domyślnie korzysta z 1.6.1, a próbuję wrzucić skrypt razem z jquery 1.9.1 Jak użyć funkcji noConflict aby strona cms działała poprawnie ? bo jQuery 1.6.1 jest ładowane standardowo, ale ja przy okazji ładuje 1.9.1 kodem i skrpytem <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" /> <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> <script> $(function() { $( "#tabs" ).tabs({ event: "mouseover" }); }); </script> Link to comment Share on other sites More sharing options...
0 vekia Posted October 15, 2013 Share Posted October 15, 2013 <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script> var jquery = $.noConflict(true); </script> następnie uzywasz zamiast $ - jquery jquery('#blok').hide(); itp. Link to comment Share on other sites More sharing options...
Question
wzr1one
Siemanko, mam mały problem z jquery.
Mój prestashop domyślnie korzysta z 1.6.1, a próbuję wrzucić skrypt razem z jquery 1.9.1
Jak użyć funkcji noConflict aby strona cms działała poprawnie ?
bo jQuery 1.6.1 jest ładowane standardowo, ale ja przy okazji ładuje 1.9.1 kodem i skrpytem
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now