Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Set focus mouse › Reply To: Set focus mouse
November 25, 2020 at 2:48 pm
#30358
Keymaster
You are welcome, and thank you for your kind words. Maybe, I think the is_home() might do it.
add_action("wp_footer", "asp_custom_script_wp_footer");
function asp_custom_script_wp_footer() {
if ( is_home() ) {
?>
<script>
var inv;
jQuery(function($){
inv = setInterval(function() {
if ( typeof ASP != "undefined" && ASP.initialized ) {
$('input.orig').focus();
clearInterval(inv);
}
}, 500);
});
</script>
<?php
}
}