x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
<style>
5
  #showMe {
6
    background: gold;
7
    padding: 20px;
8
    display: none; /* Hide the element */
9
  }
10
</style>
11
12
<!-- Load jQuery -->
13
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
14
15
<!-- Use jQuery -->
16
<script>
17
// Wait for DOM to load and be ready
18
$(document).ready(function(){
19
  
20
  // Click event handler
21
  $( "button" ).click(function() {
22
  
23
    // Fade in the element
24
    $( "#showMe" ).fadeIn();
25
    
26
  });
27
  
28
});
29
</script>
30
<button>Display password</button>
31
<p>The password is...</p>
32
<p id="showMe">I'm not telling you my password!</p>