summaryrefslogtreecommitdiffstats
path: root/example/index.html
blob: 933f5d37564dc10dabcb92c006d8b3dad148968e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
  <head>
    <script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
    <script src="../jquery.once.js"></script>
  </head>
  <body>
    <h1>jQuery Once</h1>
    <p>This is some text, which should stay green.</p>
    <script>
      // Change the color of the text to green.
      $('p').once('changecolor').css('color', 'green');

      // Attempt to change the color again.
      $('p').once('changecolor').css('color', 'red');

      // Now change the background color.
      $('p').once('changebackground').css('background-color', 'black');

      // Change it again.
      $('p').once('changebackground').css('background-color', 'yellow');
    </script>
  </body>
</html>