Hey guys,
I’m wondering if is there a way to know when the user clicked the first and second time on link?
Ex:
<a href="#">Link<a>
And When the user clicks the first time do a function and when the user clicks the second time open the link url.
I’m trying to make a dropdown menu work on touch devices.
If you know another way to make it work on touch devices let me know please :)
Thanks
JavaScript
$(document).ready(function() {
$("a").click(function() {
if(!$(this).hasClass('clicked')) {
//place code for first click
$(this).addClass('clicked') //open link next time
return false; //prevent from opening link this time
}
});
});
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.