Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Cannot click in search field… › Reply To: Cannot click in search field…
April 3, 2014 at 7:43 am
#1612
Keymaster
Hi!
I see that the search field is inside a hidden div and it only activates after clicking the search icon. The problem is, that one of the important events is not firing this way. Luckily, there is a very easy fix for that. Put this code in the site header of footer:
<script>
aspjQuery(document).ready(function(){
aspjQuery('.search-toggle').click(function(){
aspjQuery(window).resize();
})
});
</script>