Change Background Color OnClick using Input Field with JavaScript

In this tutorial we will see how to Change Background Color OnClick using Input Field with JavaScript. getElementById() method, getElementsByTagName() method, value property and style property is used for this purpose.

HTML Code

HTML code is given below, in this code we have an input field and a button tag with onclick event, this event will trigger a JavaScript function.

<input type="text" id="color" placeholder="#FFFFFF">   
    
<br><br>
    
<button onclick="changeColor()">Change Color</button>  

JavaScript Code

JavaScript Code is given below, in this code getElementById() method is used along with .value property to get the value of the input field.

Then getElementsByTagName() method is used to select the body tag and .style property and .backgroundColor property is used to change the background color of the body of HTML page.

<script>
function changeColor()
{
var color = document.getElementById('color').value;
var body = document.getElementsByTagName('body')[0];
    
body.style.backgroundColor=color;    
    
}
</script>

Demo

Video Tutorial

Watch our video tutorial on Change Background Color OnClick using Input Field with JavaScript.

Change font-size using JavaScript Get Font Size of any Tag using JavaScript Change Position of HTML Element using JavaScript How to Change Image on Hover with JavaScript How to Disable Button by Class Name in JavaScript How To Change Image Size with JavaScript How to change Image opacity with JavaScript How to Change image src on click with JavaScript How to get the lang attribute value in JavaScript How to Get attribute Value using JavaScript How To Check if Attribute Exists or not with JavaScript How To Count number of links on Page with JavaScript How To Scroll Page to Bottom using JavaScript How To Detect Shift Key Press with JavaScript Change Text Color On Hover with JavaScript Hide and Show div using JavaScript Get Button text with JavaScript Get textarea value with JavaScript Get table row Height with JavaScript Auto Increase width of input field with JavaScript Set Textarea maxLength with JavaScript Set Textarea Value with JavaScript JavaScript Count list items JavaScript set input field value Count Button Clicks with JavaScript Scroll Page to the Top on Click with JavaScript