EN
                                
                            
                        jQuery - hide element
                                    1
                                    points
                                
                                In this article, we would like to show you how to hide elements using jQuery.
1. hide method 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="button">Hide text</button>
  <script>
	$(document).ready(function() {
      	var text = $('#text');
        
      	$('#button').click(function() {
        	text.hide();
        });
    });
  </script>
</body>
</html>
2. Animated hiding 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="button">Hide text</button>
  <script>
    var duration = 1000; // animation duration in milliseconds
	$(document).ready(function() {
      	var text = $('#text');
        
      	$('#button').click(function() {
        	text.hide(duration);
        });
    });
  </script>
</body>
</html>