admin管理员组文章数量:1332336
I have a following jquery code that runs fine on desktop but doesn't run on mobile browser on my wordpress website. It attaches a parameter on ajax based search box but not doing on mobile browsers. Any idea why?
<script>
jQuery(document).ready(function($){
$("input.orig").mouseout(function() {
var stt = $(this).val();
setTimeout(function() {
$("a.asp_res_url").each(function() {
var $this = $(this);
var _href = $this.attr("href");
var _href2 = $this.attr("href").split('?')[0];
$this.attr("href", _href2 + '?s='+stt);
});
}, 0);
});
});
</script>
本文标签: Jquery not working on mobile browser
版权声明:本文标题:Jquery not working on mobile browser 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742334077a2455271.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论