Ask Your Question
1

What is the code to prompt the user to input a color for the background of the page and set it using JavaScript?

asked 2023-01-06 11:00:00 +0000

djk gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-08-01 10:00:00 +0000

david gravatar image

Here's the code to prompt the user to input a color for the background of the page and set it using JavaScript:

var bgColor = prompt("Please enter a color for the background:");

if (bgColor !== null) {
  document.body.style.backgroundColor = bgColor;
}

This code will display a popup window asking the user to input a color. If the user clicks "Ok," the color entered by the user will be set as the background color of the page. If the user clicks "Cancel" or enters an invalid color value, nothing will happen.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-01-06 11:00:00 +0000

Seen: 13 times

Last updated: Aug 01 '22