Javascript Dom Onclick This Code Example


Example 1: javascript onclick


document.getElementById("myBtn").addEventListener("click", function() {
alert("Hello World!");
});

Example 2: javascript onclick


// The element id (TheElementID) and var name (myElement) can be named anything.
var myElement = document.getElementByID('TheElementID');
myElement.onclick = function()
{
// Carry out a function here...
}

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy