i am using the famous plugin magiczoomplus to allow zoom feature. However i want to disable this on mobile.. I could not find any documentation anywhere about how to destroy magicZoomplus.
Basically the plugin looks for any element with the class magiczoomplus to initialise and is loaded in the header.
Basically i cannot even remove the class before the event is initialised..
What i am looking for is something like:
if($(window).width()<1024){
$(".magicZoomplus").destroy();
}
Can anyone please help..