Last active
December 15, 2020 18:22
-
-
Save mattsandersuk/47375f31ba2f5a6edb7e8af6b09b99dd to your computer and use it in GitHub Desktop.
Hacky fix for the wp / divi console error `live is not a function`
This file contains hidden or 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
<?php | |
add_action('admin_footer', function(){ | |
echo " | |
<script> | |
jQuery.fn.extend({ | |
live: function (event, callback) { | |
if (this.selector) { | |
jQuery(document).on(event, this.selector, callback); | |
} | |
return this; | |
} | |
}); | |
</script> | |
"; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment