Answers for "create button javascript"

2

how to create a button with javascri[t

// 1. Create the button
var button = document.createElement("button");
button.innerHTML = "Do Something";

// 2. Append somewhere
var body = document.getElementsByTagName("body")[0];
body.appendChild(button);

// 3. Add event handler
button.addEventListener ("click", function() {
  alert("did something");
});

/* Read 

https://css-tricks.com/use-button-element/
*/
Posted by: Guest on April-20-2021
0

create link and click javascript

const link = document.createElement('a');
link.id = 'someLink'; //give it an ID!
link.href = 'https://example.com'; // Your URL

//Add the link somewhere, an appendChild statement will do.
//Then run this
document.getElementById('someLink').click();
Posted by: Guest on October-26-2020

Code answers related to "create button javascript"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language