Submit button deactivated when custom search is loaded
jQuery( document ).ready( function() {
/**
* data.view_unique_id (string) The View unique ID hash
* data.form (object) The jQuery object for the View form
* data.update_form (bool) Whether the custom search form will be updated
* data.update_results (bool) Whether the custom search results will be updated
*/
var $ = jQuery;
$('input[type="submit"]').prop('disabled', true);
});
Activate the button
jQuery( document ).on( 'js_event_wpv_parametric_search_triggered', function( event, data ) {
/**
* data.view_unique_id (string) The View unique ID hash
* data.form (object) The jQuery object for the View form
* data.update_form (bool) Whether the custom search form will be updated
* data.update_results (bool) Whether the custom search results will be updated
*/
var $ = jQuery;
$('input[type="submit"]').prop('disabled', true);
});