javascript - Jquery zoom plugin to zoom a div -


i've been searching little bit on internet jquery plugin letting me zoom image.

i found many of them, doing in several ways, favorites ones zoom image in separate area , not directly original image.

ex http://i-like-robots.github.io/easyzoom/ (one of many)

but these plugins seems work directly on img tag instead zoom div src attribute referring image. (the html main structure given cannot change much).

do know plugin doing or know how it? (would better if t works ojn ie8-9, if it's not must) thanks

use zoomooz plugins there free , simple use

see simple zoom demo zoomooz on jsfiddle

$("#zoom").click(function () {     $(this).zoomto({         targetsize: 1.0,         root: $(".container")     }); }); 

Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -