JavaScript Radio Button Hide Show Div

In this tutorial we will see how to Hide and Show Div with Radio Button using JavaScript. HTML DOM getElementById() Method is used with HTML DOM style property for this purpose.

HTML Code

HTML code is given below, in this code we have two radio buttons and a main div container.

onclick event is used in radio buttons to execute a JavaScript function.

<input type="radio" name="lang" value="hide" onclick="showHideDiv(1)"> Hide
<input type="radio" name="lang" value="show" onclick="showHideDiv(2)"> Show

<br><br>    
    
<div id="div">This is Div..</div> 

JavaScript Code

JavaScript Code is given, in this code we have used HTML DOM getElementById() method and .style property.

The getElementById() method is used to select or target element with specific id.

.style property is used to change CSS properties of HTML elements.

In this example getElementById() method will select the main div container and .style property is used to hide or show the div.

This is done inside the main JavaScript function, which will be executed on click event for both radio buttons. Each radio button will send a unique value to the main JavaScript function.

Based on this value, main div either hides or it is shown to the user. This is done using JavaScript If Statements.

<script>
function showHideDiv(val)
{
 if(val ==1)
 {
    document.getElementById('div').style.display='none'; 
 }
 if(val ==2)
 {
    document.getElementById('div').style.display='block';   
 }    
}
</script>

Demo

Video Tutorial

Watch our video tutorial on JavaScript Hide Show Div with Radio Button.

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 Change id of Element with JavaScript JavaScript Change li Text Color