Created
March 9, 2021 13:34
-
-
Save leepettijohn/3cfb06b3fa87729e8d34e30a4f38e63c to your computer and use it in GitHub Desktop.
Divi - Disable jquery in Visual Builder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function($){ | |
var isvisbuild = $('.et-fb-iframe-ancestor').length; | |
if (isvisbuild == 0){ | |
// code to not run | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment