This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Set focus mouse

#30353
Ernest MarcinkoErnest Marcinko
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.