How to disable elevateZoom?

How to disable elevateZoom?

How do i call the destroy function in elevateZoom ? The documentation does't have any mention of it , If i do a quick ctrl+f in the source, i see an option for disable , But i am not sure how to disable or destroy elevateZoom ?

I have the following code:

HTML:

  1. <img id="img_01" src="http://unilaboralgirona.com/wp-content/uploads/2015/03/ZContact.jpg" data-zoom-image="http://unilaboralgirona.com/wp-content/uploads/2015/03/ZContact.jpg"/> 
JS:

  1.  $("img").elevateZoom({ zoomType    : "inner", cursor: "crosshair" , easing : true });

  2. setTimeout(function(){}
  3.       // how to destroy elevateZoom on image ? 
  4. ,2000); 

Now after 3 seconds, i wish for the zoom functionality not to work. What do i do inside the  setTimeout()  that the  elevateZoom  becomes non-functional.


FIDDLE HERE