how to check if fancybox exists on page already

后端 未结 5 1848
猫巷女王i
猫巷女王i 2021-02-09 01:46

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条回答
  •  梦毁少年i
    2021-02-09 02:34

    I made it work with below code:

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

提交回复
热议问题