All Questions
3 questions
-1
votes
1
answer
32
views
Javascript event - detect clicked link
I am implementing an automated synchronous javascript sequencer. All events are correctly resolved synchronously, but there is a problem when I trigger an event that causes change of URL (for example ...
14
votes
2
answers
24k
views
Detect if input was touched (tablet) or clicked (mouse)
We are developing a Web-App, which launches on Desktop and on tablets (iPad, Android or a surface). Now we are building our own keyboard for number inputs. When you set the focus on an input field ...
1
vote
3
answers
480
views
Use javascript to test if one function is clicked/triggered, then disable the another function.
I have function a:
$(document).ready(function a(){
$('.c, .d').click(function() {
$("f").each(function(i) {
c=i+1
print c
});
});
});
and I'...