THE WORLD'S LARGEST WEB DEVELOPER SITE

W3.JS Show

Show Hidden HTML elements

w3.show(selector)

Show Elements Using Element Id

To show an element with a specified id, use a hash tag (#) in front of the id name.

Show an element with id="London":

Example

<button onclick="w3.show('#London')">Show</button>

Try It Yourself »


Show Elements Using Tag Name

To show all elements with a specified tag name, use the tag name (without < and >) as the selector.

Show all <h2> elements:

Example

<button onclick="w3.show('h2')">Show</button>

Try It Yourself »


Show Elements Using Class Name

To show all elements with a specified class name, use a period (.) in front of the class name.

Show elements with class="city":

Example

<button onclick="w3.show('.city')">Show</button>

Try It Yourself »