Search code examples
jqueryjquery-pluginsfacebox

Facebox 1.2 Hide event?


I am using facebox in one of my projects. Is there a event to get the close/hide event of the box? onHide is not available ?


Solution

  • Checkout the doc's for it: http://github.com/defunkt/facebox/blob/master/facebox.js#L52

    $(document).bind('close.facebox', function () {
        // Facebox is closing :O
    });