Ok so I want to create variables as a user clicks threw the code every click adds a new variable. I am currently using jquery and javascript I can\'t do it server side this
var newCount = 0; $('#btn').click(function(){ newCount++; $('#hello').html('hello' + newCount); });
jsfiddle