Team:Newcastle/Outreach/Overview
From 2013.igem.org
(Difference between revisions)
YDemyanenko (Talk | contribs) |
|||
Line 6: | Line 6: | ||
==345== | ==345== | ||
- | + | <!DOCTYPE html> | |
- | + | <html> | |
- | + | <head> | |
- | ! | + | <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> |
- | + | </script> | |
- | + | <script> | |
- | + | $(document).ready(function(){ | |
- | + | $("#hide").click(function(){ | |
- | + | $("p").hide(); | |
- | + | }); | |
- | + | $("#show").click(function(){ | |
- | + | $("p").show(); | |
- | { | + | }); |
- | + | }); | |
- | + | </script> | |
- | + | </head> | |
- | + | <body> | |
- | + | <p>If you click on the "Hide" button, I will disappear.</p> | |
- | + | <button id="hide">Hide</button> | |
- | + | <button id="show">Show</button> | |
- | + | </body> | |
- | + | </html> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + |
Revision as of 14:43, 28 September 2013
X
Outreach
123
345
<!DOCTYPE html>
If you click on the "Hide" button, I will disappear.