Here we are using onchange() for changing the text colors and background colors.
Sample Code
<script> function color(){ var color = document.getElementById('color').value; document.getElementById('text').style.color = color; } function textBgcolor(){ var color = document.getElementById('bgcolor').value; document.getElementById('text').style.backgroundColor = color; } </script> <select onchange="color()" id="color"> <option value="black">Select Black</option> <option value="red">Select Red</option> <option value="blue">Select Blue</option> <option value="green">Select Green</option> </select><br> <select onchange="textBgcolor()" id="bgcolor"> <option value="black">Select Black</option> <option value="red">Select Red</option> <option value="blue">Select Blue</option> <option value="green">Select Green</option> </select> <div id="text">Sample Code</div>
You might also like:
Compare the Triplets | Javascript | hackerrank.com07-05-2020 hackerrank.com |
How To Get Your Blogs Posts Using Blogger API30-07-2017 blogger api json php |
How to redirect one page to another page in php20-03-2017 redirect php |
How to change background color and color to the text using javascript27-02-2017 css javascript colors |
How to remove last / value from url in javascript27-02-2017 array javascript last value |