admin管理员组文章数量:1344322
Can anyone point the issue why I am unable to get the alert popup on first click? It works only every second click (i.e. doesn't work on odd number click and works on even number click).
HTML:
<div class="slider">
<div class="slider-box ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all">
<a class="ui-slider-handle ui-state-default ui-corner-all" href="#" style="left: 50%;"></a>
</div>
</div>
jQuery:
$(document).ready(function() {
$("a.ui-slider-handle").click(function() {
alert('test');
});
});
I also tried but didn't work
$(document).ready(function() {
$("a.ui-slider-handle").mousedown(function() {
alert('test');
});
});
Can anyone point the issue why I am unable to get the alert popup on first click? It works only every second click (i.e. doesn't work on odd number click and works on even number click).
HTML:
<div class="slider">
<div class="slider-box ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all">
<a class="ui-slider-handle ui-state-default ui-corner-all" href="#" style="left: 50%;"></a>
</div>
</div>
jQuery:
$(document).ready(function() {
$("a.ui-slider-handle").click(function() {
alert('test');
});
});
I also tried but didn't work
$(document).ready(function() {
$("a.ui-slider-handle").mousedown(function() {
alert('test');
});
});
Share
edited Jan 7, 2014 at 18:16
talemyn
7,9704 gold badges33 silver badges52 bronze badges
asked Jan 7, 2014 at 18:13
Karthik MallaKarthik Malla
5,82014 gold badges51 silver badges91 bronze badges
3
- 4 Works for me -> jsfiddle/3zEX5 – adeneo Commented Jan 7, 2014 at 18:14
- is this jQuery ui slider? – Nouphal.M Commented Jan 7, 2014 at 18:14
- 2 There's probably something interfering with the click event, like another click event. – bjb568 Commented Jan 7, 2014 at 18:16
5 Answers
Reset to default 3Hmm... have you tried to prevent the default anchor behavior? http://jsbin./IfirEBOj/2/edit
$("a.ui-slider-handle").click(function( event ) {
event.preventDefault();
alert('test');
});
In any case you should get familiar with some debugging tool and see what errors it throws. If any...
add: return false; to your mand
$(document).ready(function() {
$("a.ui-slider-handle").click(function() {
alert('test');
return false;
});
});
Have you tried to void the href attribute?
$(document).ready(function(){
$("a.ui-slider-handle").attr('href', 'javascript:void(0)').click(function(){
alert('test');
});
});
Try this:
<div id="slider"></div>
$(document).ready(function () {
$("#slider" ).slider();
$("#slider").on('click','a',function () {
alert('test');
});
});
check the fiddle: http://jsfiddle/3zEX5/2/
UPDATE: I think you are clicking on the div first and then the anchor tag es near it i.e the small slider button. so you are feeling as it is working on odd click, if you can clearly tell you requirment then we can suggest you some way
If you are using react.js then you can use a useEffect hook.
import 'useEffect' from 'react'
useEffect(() => {
$("a.ui-slider-handle").on('click', function() {
alert('test')
})
}, [])
本文标签: javascriptjQuery working on second click onlyStack Overflow
版权声明:本文标题:javascript - jQuery working on second click only - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743775089a2536825.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论