Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › set the focus in the input field › Reply To: set the focus in the input field
September 13, 2021 at 2:00 pm
#34696
Keymaster
Hi!
Try this variation of the custom code instead:
add_action("wp_footer", "asp_custom_script_wp_footer");
function asp_custom_script_wp_footer() {
?>
<script>
jQuery(function($){
$('.promagnifier').on('click', function(){
var _this = this;
setTimeout(function() {
if ( $(_this).closest('.asp_w').attr('asp-compact') == 'open' ) {
$(_this).closest('.asp_w').find('input.orig').focus();
}
}, 500);
});
});
</script>
<?php
}