I use elevateZoom jquery for zooming image in liferay. I put my js file in css folder. and use following script
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src='/css/jquery.elevatezoom.js'></script>
<script>
jQuery("#zoom_01").elevateZoom({
zoomType: "inner",
cursor: "crosshair",
zoomWindowFadeIn: 500,
zoomWindowFadeOut: 750
});
</script>
But it gives me follwing warning and error warning
07:19:51,317 WARN [http-bio-8081-exec-76][code_jsp:128] {code="404", msg="/resources/demos/style.css", uri=/resources/demos/style.css}
error
TypeError: jQuery(...).elevateZoom is not a function
How can i resolved this error. Is there any other way for zooming image in liferay? please help
Thanks