diff options
Diffstat (limited to 'example/index.html')
-rw-r--r-- | example/index.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/example/index.html b/example/index.html index fa009dc..448fbd3 100644 --- a/example/index.html +++ b/example/index.html @@ -2,7 +2,7 @@ <html> <head> <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> - <script src="../jquery.once.min.js"></script> + <script src="../jquery.once.js"></script> </head> <body> <h1>jQuery Once</h1> @@ -11,6 +11,7 @@ $('p').once('greenify', function() { $(this).css('color', 'green'); }); + $('p').once('bluify').css('color', 'blue'); </script> </body> </html> |