how to check if fancybox exists on page already

后端 未结 5 1241
无人共我
无人共我 2021-02-09 01:43

I am trying to check if a fancybox has been loaded already. If so then I run an ajax script to put content inside.

If not I open a fancybox iframe and it fetches content

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

    I made it work with below code:

    if(typeof $.fancybox == 'function') {
         fancy box loaded;
    } else {
         fancy box not loaded;
    }
    

提交回复
热议问题