Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,106 questions

40,778 answers

573 users

How to change HTML style with JavaScript HTML DOM (Document Object Model)

1 Answer

0 votes
<!DOCTYPE html>
<html>

<head></head>

<body>

<p id="p-id">JavaScript HTML DOM</p>

<script>

document.getElementById("p-id").style.color = "dodgerblue";
document.getElementById("p-id").style.backgroundColor = "gainsboro";

/*
run:

"JavaScript HTML DOM" with the colors we set

*/

</script>

</body>

</html>

 





answered Jul 7, 2015 by avibootz

Related questions

2 answers 206 views
1 answer 152 views
2 answers 6,973 views
1 answer 168 views
1 answer 176 views
...