elements hide - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:hide

Description

elements hide

Demo Code

ResultView the demo in separate window

<html lang="en">
 <head></head> 
 <body translate="no"> 
  <a class="download-link">Click here</a> 
  <div class="my" data-channelid="asdf" data-layout="default" data-count="hidden">
    Stuff //from ww w  .  j a  v a  2  s.  c  o m
  </div> 
  <script src="https://code.jquery.com/jquery-2.2.4.min.js"></script> 
  <script>
      $(document).ready(function(){
 $( ".download-link" ).hide();
 $( ".my" ).click(function() {
      $( ".download-link" ).fadeIn('slow');  
 });
});

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

Related Tutorials