/    Sign up×
Community /Pin to ProfileBookmark

Long Press function

Hello!
Tell me a simple function that will work after 2 seconds of pressing.

Example: Presses and holds on an element, after 2s the function is activated. In moment when it reaches 2s.

Should work on PC and Mobile!
Thank!

to post a comment
CSSHTMLJavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@daveyerwinAug 23.2019 — ``<i>
</i>&lt;button id=longpress&gt;hold down for two seconds&lt;/button&gt;
&lt;script&gt;
var longPress = (function(){
var timer = '';

function up(e){
clearTimeout(timer);
}

function down(e){
timer = setTimeout(timedOut,2000);
}

function timedOut(){
alert('button was down for 2 seconds or more');
}

return {
down: down,
up: up
};
}());
longpress.addEventListener('mousedown',longPress.down);
longpress.addEventListener('mouseup',longPress.up);
&lt;/script&gt;<i>
</i>
``
×

Success!

Help @ethereal spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 4.26,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...