is onclick an attribute or property code example
Example 1: javascript onclick
document.getElementById("Save").onclick = function ()
{
alert("hello");
//validation code to see State field is mandatory.
}
Example 2: javascript button onclick
document.getElementById('button').onclick = function() {
alert("button was clicked");
};