Forums
Forums / Fixing WordPress / Removing jquery.form.min.js
(@fileour)
3 years, 8 months ago
I am trying to optimized my web site.
So I want to remove the bellow script. wp-includes/js/jquery/jquery.form.min.js?ver=4.3.0′ id=’jquery-form-js’
Please help me, how to remove or disable the script?
Regards
(@threadi)
Never seen that included anywhere? Because of the handle “jquery-form” it should be possible to deregister it:
function custom_deregister_scripts() { wp_dequeue_script( 'jquery-form' ); } add_action( 'wp_head', 'custom_deregister_scripts', PHP_INT_MAX );
The topic ‘Removing jquery.form.min.js’ is closed to new replies.