GetElementById exercise

Developer
Size
1,717 Kb
Views
32,384

How do I make an getelementbyid exercise?

What is a getelementbyid exercise? How do you make a getelementbyid exercise? This script and codes were developed by Peter Lewicki on 03 September 2022, Saturday.

GetElementById exercise Previews

GetElementById exercise - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>getElementById exercise</title>
</head>
<body> <h1 id="myName">Peter</h1>
<hr>
<p id="aboutMe"><em>I'm learning to build dynamic web pages with Javascript and HTML<em></p> <hr> <h2>Here are some things I like</h2> <p>Cool, cool stuff</p> <li id="firstThing">Old books</li> <li id="secondThing">Europe and its Lifestyle</li> <li id="thirdThing">Nice Shoes</li> </ul> <button id="changeList" type="button"> Change your list </button> <script src="js/index.js"></script>
</body>
</html>

GetElementById exercise - Script Codes JS Codes

var item1;
var item2;
var item3;
document.getElementById("changeList").onclick = newList;
function newList() { item1 = prompt("Enter a new first thing: "); item2 = prompt("Enter a new second thing: "); item3 = prompt("Enter a new third thing: "); updateList();
}
function updateList () { document.getElementById("firstThing").innerHTML = item1; document.getElementById("secondThing").innerHTML = item2; document.getElementById("thirdThing").innerHTML = item3; }
GetElementById exercise - Script Codes
GetElementById exercise - Script Codes
Home Page Home
Developer Peter Lewicki
Username peterlewicki
Uploaded September 03, 2022
Rating 3
Size 1,717 Kb
Views 32,384
Do you need developer help for GetElementById exercise?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Peter Lewicki (peterlewicki) Script Codes
Create amazing love letters with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!