Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Spinning wheel, but no live dropdown results… › Reply To: Spinning wheel, but no live dropdown results…
Hi!
Thank you for the proper information, it helps me a lot!
1. This is a new “feature” to webkit browsers. By adding this css to the header of your site will most likely eleminate this issue:
.proinput input[type="search"] {
-webkit-appearance: none !important;
}
2. Not sure why, but the first fix might fix this as well.
3. It’s working on both devices on my end, here are screenshots from iPad/iPhone:
3.a Most likely a late init issue with ubermenu mobile version. In these cases I recommend to initiate a delayed window resize event, which usually helps. If you put this code in your site header it might fix this issue:
aspjQuery(document).ready(function(){
setTimeout(function(){
aspjQuery(window).resize();
}, 2500);
});
You can try to experiment with the millisecond timeout value by increasing/decreasing it.