image magnifire not working: i am setting product magnifier on image using jquery but working please help me i am new in development. this is the url : http://thefashionista.in/single.php?p_id=8 error in cosole : Uncaught TypeError: $(...).picZoomer is not a function
Asked
Active
Viewed 714 times
0
-
Did you include the `picZoomer` library? It might help to include a [minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) that demonstrates the issue. – showdev Aug 22 '19 at 17:44
-
yes here are these : – Pankaj Yadav Aug 22 '19 at 17:46
-
Two different versions of jQuery are loaded: `1.11.3` and `3.2.1`. That might be causing trouble. See [Can I use multiple versions of jQuery on the same page?](https://stackoverflow.com/questions/1566595/can-i-use-multiple-versions-of-jquery-on-the-same-page) – showdev Aug 22 '19 at 17:54
-
thanks this worked. – Pankaj Yadav Aug 22 '19 at 18:07
-
Possible duplicate of [Can I use multiple versions of jQuery on the same page?](https://stackoverflow.com/questions/1566595/can-i-use-multiple-versions-of-jquery-on-the-same-page) – 4b0 Aug 25 '19 at 07:24
1 Answers
0
Based on your comment
<script type="text/javascript" src="css/jquery-picZoomer.js"></script>
You are trying to load the picZoomer
from the css
folder. Based on the docs on Github the script should be loaded from the src
folder
<script type="text/javascript" src="src/jquery-picZoomer.js"></script>

Emiel Zuurbier
- 19,095
- 3
- 17
- 32
-
True, but the [file seems to exist](http://thefashionista.in/css/jquery-picZoomer.js). – showdev Aug 22 '19 at 17:57