Assignment 2

This time we are going to show the user's input in an alert.

An alert is a message box that pops up on the webpage. It has a button to dismiss it and looks super snazzy.

We need a page with a textbox for the user to type in to get started, and we can get the value from it with document.getElementById(textbox).value but only if we gave our textbox an ID called "textbox". When you have things on your page you should get them by their ID, so be sure to keep track of what you name things!

Output the user's input that has been saved in a variable for you, in an alert!

Use the code below to start the assignment:

<!DOCTYPE html>

<html>

<head>

<script>


function myCode(){

let usersText = document.getElementById("textbox").value;


// Show the user's input, usersText, in a messagebox!

// YOUR CODE GOES UNDER HERE!

}


</script>

</head>

<body>

<input type="text" id="textbox">

<div onclick="myCode()">Click Here To Run</div>

</body>

</html>