Skip to content

Instantly share code, notes, and snippets.

@aimahdi
Created September 17, 2024 05:37
Show Gist options
  • Save aimahdi/3b1243ac6bbbe0614ec2976e4164c121 to your computer and use it in GitHub Desktop.
Save aimahdi/3b1243ac6bbbe0614ec2976e4164c121 to your computer and use it in GitHub Desktop.
private function pushScripts($data, $form)
{
add_action('wp_footer', function () use ($data, $form) {
?>
<script type="text/javascript">
jQuery(document).ready(function($) {
if (typeof $.fn.fileupload !== 'undefined') {
delete $.fn.fileupload;
console.log("jQuery.fn.fileupload function removed");
}
});
</script>
<?php
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment