how to use onclick event in javascript code example
Example 1: javascript button
<button onclick="Function()">Text</button>
Example 2: javascript onclick
var myElem = document.getElementByID('ElemID');
myElem.onclick = function() {
//do stuff
}