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

Reply To: Can't fill contact form inputs when fixed search is added to the site

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Can't fill contact form inputs when fixed search is added to the site Reply To: Can't fill contact form inputs when fixed search is added to the site

#7736
Ernest MarcinkoErnest Marcinko
Keymaster

Oh yeah, I forgot about textareas and possible select fields. Change the code to:

[html]<script>
jQuery(function($){
$("._full_width input, ._full_width textarea, ._full_width select").click(function(e){
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();
});
});
</script>[/html]

That should include everything.