Show and Hide Element On Click Using JavaScript

Show and Hide Element On Click Using JavaScript

We can Hide and Show any HTML element using onclick attribute and simple JavaScript code.

Onclick Attribute

The onclick attribute is HTML Attribute used for events. Onclick attribute can be used on any HTML element.

The onclick attribute is used to invoke or call a JavaScript function.

HTML Code

A unique Id is assigned to our element, In this example it's an image. You can also use class for that purpose but generally a class is not unique so we should use an Id.

The onclick attribute is used in button element to invoke JavaScript function show_hide().

<!DOCTYPE html>
<html>
<body>
<img id="image" src="HowToCodeSchool.png">   
<div>
<button onclick="show_hide()">Show and Hide</button>
</div>
<script src="showhideelement.js">
</script>
</body>
</html>

JavaScript Code

In the function body we are checking for the value of Variable a.

For the first click, It is assumed that element is not hidden so it will always hide it. After that When value of variable a is 1, the element is displayed, otherwise the display property of element will be set to none.

Setting display property to none completely remove the element from layout of the page and any other element will take its place, if there is any.

Notice that we have used an id image to access our image element and change it's display property.

var a;
function show_hide()
{
if(a==1)
{
document.getElementById("image").style.display="inline";
return a=0;
}
else 
{
document.getElementById("image").style.display="none";
return a=1;
}
}

Demo

Video Tutorial

Feel free to use this code in your websites and projects. Subscribe to our channel and happy learning.

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