Lesson 11, Tuesday, 2024-04-23
Basic button with click handler:
<button onclick="handleButtonClick()">Click me!</button>
In javascript:
function handleButtonClick() {
console.log("The button was clicked!");
}
document.body
is an object, we can change the (CSS) style properties of it:
// change the page background color:
document.body.style.backgroundColor = "red";
// Make our click handler change the background color!
function handleButtonClick() {
console.log("The button was clicked!");
document.body.style.backgroundColor = "green";
}
By giving an element an id
attribute:
<div id="myDiv">Hello!</div>
We can access it in javascript:
let someDiv = document.getElementById("myDiv");
someDiv.textContent = "Goodbye!";
someDiv.style.backgroundColor = "blue";
In HTML, create a div, an input, and a button.
When the user puts their name into the input and clicks the button, set the div content to:
"Hello {Name}!"
In HTML, create an input, and a button.
When the user types a color into the input and clicks the button, set the body background color to what the user input.
So if the user types "blue" into the input and clicks the button, the page background color should turn blue.
You are tasked with creating a basic calculator application that can perform addition and subtraction.
Provide two input fields for operands (Operand 1 and Operand 2), a dropdown menu for the operator (+ and -), a "Calculate" button, and a div element for displaying the result.
When the user clicks the "Calculate" button, retrieve the values from the input fields and the selected operator from the dropdown menu.
Using JavaScript, perform the appropriate operation (addition or subtraction) based on the selected operator.
Display the result in the designated div.