Team:Virginia/Project
From 2014.igem.org
(Difference between revisions)
(Blanked the page) |
|||
Line 1: | Line 1: | ||
- | + | <html> | |
+ | <head> | ||
+ | <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | ||
+ | <script> | ||
+ | $(document).ready(function(){ | ||
+ | $("p").click(function(){ | ||
+ | $(this).hide(); | ||
+ | }); | ||
+ | }); | ||
+ | </script> | ||
+ | </head> | ||
+ | <body> | ||
+ | <p>If you click on me, I will disappear.</p> | ||
+ | <p>Click me away!</p> | ||
+ | <p>Click me too!</p> | ||
+ | </body> | ||
+ | </html> |
Revision as of 18:43, 9 June 2014
If you click on me, I will disappear.
Click me away!
Click me too!