run js in html click code example
Example 1: javascript button onclick
document.getElementById('button').onclick = function() {
alert("button was clicked");
};
Example 2: javascript onclick
var myElem = document.getElementByID('ElemID');
myElem.onclick = function() {
//do stuff
}