Changing DIV background with JavaScript?

by 1 replies
2
I know there is a way to change a DIV HTMT text using JavaScript, but is there any way to change the DIV background image? Or background color?
#programming #background #changing #div #javascript
  • You may use the code below and just replace the div1 with your div name.

    document.getElementById('div1').style.backgroundCo lor = "#ff0000";

    You also may go to w3school website to search under DOM style for more details.

    Thanks.

Next Topics on Trending Feed