thdoan / magnify

A lightweight jQuery magnifying glass zoom plugin.
https://thdoan.github.io/magnify/
MIT License
244 stars 64 forks source link

How to disable/destroy the magnifier? #8

Closed arnoldbird closed 8 years ago

arnoldbird commented 9 years ago

I want to create a UI for toggling the magnify functionality off and on. Turning it on is easy enough, since that's what the magnify function does. What's the best way to turn it off?

Thanks!

polyn0m commented 9 years ago

@arnoldbird try to $('img').unwrap()

thdoan commented 8 years ago

I will add a destroy() public method when time permits, but in the meantime you can do as @arnoldbird suggests. Thanks for the input.