Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Set focus mouse › Reply To: Set focus mouse
November 25, 2020 at 2:28 pm
#30353
Keymaster
Hi,
Thank you for the details!
Try adding this custom code to the functions.php in your theme/child theme directory. Before editing, please make sure to have a full site back-up just in case!
add_action("wp_footer", "asp_custom_script_wp_footer");
function asp_custom_script_wp_footer() {
?>
<script>
var inv;
jQuery(function($){
inv = setInterval(function() {
if ( typeof ASP != "undefined" && ASP.initialized ) {
$('input.orig').focus();
clearInterval(inv);
}
}, 500);
});
</script>
<?php
}
I could not test this, so please be careful.