Hey there, can anyone give me an idea of how to let a function start when a button is clicked and to let it stop when it is released? Thank you! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Hey there, can anyone give me an idea of how to let a function start when a button is clicked and to let it stop when it is released? Thank you!

1st Apr 2017, 10:38 AM
MisterMM23
13 Answers
+ 5
HTML <button onclick="btnCliker()">Check Click</button> JS function btnClicker(){ alert("hello") } btnClicker function gets called every time the button is clicked. onclick is the event attribute to register it. If this is what you mean ?
1st Apr 2017, 12:11 PM
Ashwani Kumar
Ashwani Kumar - avatar
+ 5
Try onmousedown and onmouseup events.
1st Apr 2017, 12:18 PM
Ashwani Kumar
Ashwani Kumar - avatar
+ 5
<input type = "button" value = "&#8593;" id = "uarr" onmousedown = "Up()" onmouseup = "stopMoving()"> <div id= "playsupport"> <div id= "player"></div> </div> <div id = "pos"></div> <script> var a; var y = 0; var t; var player = document.getElementById("player"); function Pos(){ a = setInterval(BGPos, 1); } function BGPos(){ document.getElementById("pos").innetHTML= "x: " + player.top+ "\ny" + player.bottom; } Pos(); function Up(){ t = setInterval("BGUp()", 20); } function stopMoving(){ clearInterval(t); } function BGUp(){ y += 10; player.style.bottom = y + "px"; player.style.background = "blue"; } </script> Try this code. Up and stopMoving functions are working now. setTimeout should be replaced with setInterval. y should be initialized for the player to move.
1st Apr 2017, 12:50 PM
Ashwani Kumar
Ashwani Kumar - avatar
1st Apr 2017, 3:11 PM
Ashwani Kumar
Ashwani Kumar - avatar
+ 4
What do you mean by let the function work
1st Apr 2017, 12:13 PM
Ashwani Kumar
Ashwani Kumar - avatar
+ 4
onmousedown and onmouseup events work. I just tried. Please provide a link to code playground if not working for you.
1st Apr 2017, 12:23 PM
Ashwani Kumar
Ashwani Kumar - avatar
0
Not really 😅. I'm searching for a solution to let a function work WHILE a button is pressed, and to stop it when it's released.
1st Apr 2017, 12:13 PM
MisterMM23
0
It shall do something as long as a certain button is pressed
1st Apr 2017, 12:14 PM
MisterMM23
0
I tried: <button ontouchstart = "Func()" ontouchend = "StopFunc()"> But it doesn't even call the function
1st Apr 2017, 12:17 PM
MisterMM23
0
I also tried, it doesn't work.
1st Apr 2017, 12:19 PM
MisterMM23
0
http://www.sololearn.com/app/javascript/playground/WCNo2JgLcl92/ It also may not work because the JS is not responding. The "Up()" function is not the only one which doesn't get executed even known it's called. Don't pay attention on the onmouseup events in the HTML code
1st Apr 2017, 12:33 PM
MisterMM23
0
Thank you!
1st Apr 2017, 12:52 PM
MisterMM23
0
Could you please send me the link of your code it doesn't do anything for me
1st Apr 2017, 2:49 PM
MisterMM23