<html>
<head>
<title>Contador de clicks</title>
<script type="text/javascript">
var youanimeoficialcounter = 0;
function clickLink() {
youanimeoficialcounter++;
if (youanimeoficialcounter == 1) {
document.getElementById("clicks").innerHTML = youanimeoficialcounter;
}
}
function Reset() {
youanimeoficialcounter = 0;
document.getElementById("clicks").innerHTML = youanimeoficialcounter;
}
</script>
<style type="text/css">
.fb_like {
background: blue;
border-color: blue;
cursor: pointer;
}
</style>
</head>
<body>
<input class="fb_like" type="button" value="Me Gusta" onclick="clickLink();" ondblclick="Reset();" />
<p>Clicks <span id="clicks">0</span></p>
</body>
</html>
Si Me Preguntan Por Que Quiero Esto En Jquery Es Muy Simple Para Que No Tenga Que Usar onclick y doble click si no toggle de jquery
Porfa Alguien Que Sepa De Jquery Que Me Ayude Se Lo Agradecería Mucho