The issue I had like this was because the script for this was being loaded before jquery. I made this lower priority and it resolved the issue. Edit the plugin and change this line:
wp_register_script('hide-this-part-js', WP_PLUGIN_URL . '/hide-this-part/js.js');
to something like:
wp_register_script('hide-this-part-js', WP_PLUGIN_URL . '/hide-this-part/js.js',false,1,4);