Created
October 1, 2015 02:02
-
-
Save allolex/fb5909d9f47d58789189 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Test</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> | |
| </head> | |
| <body> | |
| <p>Bacon ipsum dolor amet landjaeger exercitation ullamco ea t-bone non pork | |
| chop chuck cillum drumstick duis magna brisket laborum pork loin. Consequat | |
| dolor shoulder, ham hock exercitation id velit aliquip dolore spare ribs | |
| commodo ad enim. Meatball t-bone enim, sirloin filet mignon spare ribs | |
| eiusmod laboris. Ut laborum tenderloin sunt ad fatback spare ribs picanha | |
| labore adipisicing occaecat. Consequat ex shoulder minim, sirloin pork belly | |
| est. Jerky kielbasa minim ut laboris. Rump proident ground round, qui in | |
| cillum hamburger shank pork biltong laborum.</p> | |
| <p>In sunt dolor officia cillum jowl shank shoulder tongue adipisicing in | |
| dolore fatback. Chuck fatback commodo swine andouille kielbasa ground round | |
| est tri-tip filet mignon in duis. Prosciutto exercitation ea adipisicing | |
| tenderloin lorem kevin pork chop kielbasa venison incididunt in magna in | |
| culpa. Ribeye adipisicing sed pariatur enim drumstick ex labore pig ground | |
| round.</p> | |
| <p><a id="thelink" href="#">The link</a></p> | |
| <form id="theform" action="#" style="display: none;"> | |
| <textarea name="comment"></textarea> | |
| <button type="submit">Go!</button> | |
| </form> | |
| <script type="text/javascript"> | |
| $(function() { | |
| $("#thelink").click(function(event){ | |
| event.preventDefault(); | |
| $("#theform").toggle(700); | |
| }); | |
| }); | |
| </script> | |
| <body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment