How to use Zurb Foundation reveal with open, opened, close, closed callback functions?

后端 未结 9 555
执念已碎
执念已碎 2021-02-05 01:41

On zurb foundation\'s website at http://foundation.zurb.com/docs/reveal.php they listed some Options including

open: callback function that triggers \'before\' the

9条回答
  •  佛祖请我去吃肉
    2021-02-05 02:09

    In foundation 3.2.5 you should bind 'reveal:opened' like this:

    $('#myModal').bind('reveal:opened', function() {
       console.log("myModal opened");
    });
    

    Regards, MarianoC.

提交回复
热议问题