Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gunaevart/36849a3e90d08c8dbb74b66fd7b87548 to your computer and use it in GitHub Desktop.
Save gunaevart/36849a3e90d08c8dbb74b66fd7b87548 to your computer and use it in GitHub Desktop.
----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