summaryrefslogtreecommitdiffstats
path: root/example/index.html
blob: 0afff9bd860ff9b62fc189e2ad2441b9e2999066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
    <head>
        <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
        <script src="../jquery.once.js"></script>
    </head>
    <body>
        <h1>jQuery Once</h1>
        <p>This is some text, which is turned green only once.</p>
        <script>
          $('p').once('greenify', function() {
            $(this).css('color', 'green');
          });
        </script>
    </body>
</html>