Is it possible for me to carry the value of a button over to the function that that the button executes?
Simple concept, how would I get the value "5" to be carried over to my function where I can define it as a variable?
<button onclick="functionHere()" value="5">Delete</button>
Code actually looks more like:
<button onclick="functionHere()" value="' + aData[5] + '">' + 'Delete</button>