Created
March 5, 2015 19:26
-
-
Save lmccart/a29c88800c8e0779d78e to your computer and use it in GitHub Desktop.
wikipedia iframe example
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
<html> | |
<head> | |
<script src="jquery.js"/></script> | |
<script> | |
$(document).ready(function() { | |
$('#show').click(function() { | |
$('#wiki').fadeIn(); | |
}) | |
}); | |
</script> | |
<style> | |
iframe { | |
border: none; | |
width: 600px; | |
height: 1200px; | |
display: none; | |
} | |
#show { | |
background: pink; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="show">hi there</div> | |
<iframe id="wiki" src="http://en.wikipedia.org/w/index.php?title=Gamergate_controversy&diff=650003294&oldid=649972067"></iframe> | |
some more | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment