Languages
[Edit]
EN

jQuery - hide and show element

1 points
Created by:
Eshaal-Wilkinson
774

In this article, we would like to show you how to hide and show elements using jQuery.

1. hide and show methods example

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
</head>
<body>
  <div id="text">This is example text...</div>
  <button id="hide-text">Hide text</button>
  <button id="show-text">Show text</button>
  <script>

	$(document).ready(function() {
      	var text = $('#text');

      	$('#hide-text').click(function() {
        	text.hide();
        });

        $('#show-text').click(function() {
        	text.show();
        });
    });

  </script>
</body>
</html>

2. Animated hiding and showing example

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
</head>
<body>
  <div id="text">This is example text...</div>
  <button id="hide-text">Hide text</button>
  <button id="show-text">Show text</button>
  <script>

    var duration = 1000; // animation duration in milliseconds

	$(document).ready(function() {
      	var text = $('#text');

      	$('#hide-text').click(function() {
        	text.hide(duration);
        });

        $('#show-text').click(function() {
        	text.show(duration);
        });
    });

  </script>
</body>
</html>

Alternative titles

  1. jQuery - how to hide and show element?
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

jQuery

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join