MooTools SqueezeBox unbing all events from backdrop

60 Views Asked by At

How do I unbind all events from SqueezeBox backdrop modal? I have tried

jQuery('#sbox-overlay').unbind('click')

but to no avail

1

There are 1 best solutions below

0
On

try to do this in your onload block.

jQuery('#sbox-overlay').off()

regards