Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Set focus mouse › Reply To: Set focus mouse
November 25, 2020 at 2:58 pm
#30363
Keymaster
Maybe this variation then:
add_action("wp_footer", "asp_custom_script_wp_footer");
function asp_custom_script_wp_footer() {
if ( is_front_page() ) {
?>
<script>
var inv;
jQuery(function($){
inv = setInterval(function() {
if ( typeof ASP != "undefined" && ASP.initialized ) {
$('input.orig').focus();
clearInterval(inv);
}
}, 500);
});
</script>
<?php
}
}