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

Reply To: Text Not Typing in Revolution Slider

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Text Not Typing in Revolution Slider Reply To: Text Not Typing in Revolution Slider

#5310
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

It looks like something is catching the focus event (I’m guessing the slider) and prevents the default behavior. It’s extremely hard to tell what code is exactly causing it. I see dozens of new properties on each search element, I’m guessing it’s the slider doing it.

I think I might have a solution though without touching the slider. Try to add this custom javascript code to the footer of your site before the closing body tag:

[code]
<script>
jQuery(‘input.orig’).click(function(e){
jQuery(this).focus();
});
</script>
[/code]