Created
December 16, 2016 12:38
-
-
Save gunaevart/36849a3e90d08c8dbb74b66fd7b87548 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
----HTML---- | |
<a href="javascript:void();" onclick="ctat()" id="add">Заказать</a><br> | |
<span id="span" style="color: red;"></span> | |
----JS---- | |
var count = +1; | |
function ctat(){ | |
var total = count++; | |
document.getElementById('span').innerHTML='Нажали на ссылку '+total+' раз'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment