Knowledge fuels change
For over a decade, Energypedia has shared free, reliable energy expertise with the world.
We’re now facing a serious funding gap.
Help keep this platform alive — your donation, big or small, truly matters!
Thank you for your support
Difference between revisions of "Sandbox"
From energypedia
***** (***** | *****) m Tag: 2017 source edit |
***** (***** | *****) m Tag: 2017 source edit |
||
| Line 12: | Line 12: | ||
}} | }} | ||
--> | --> | ||
| − | < | + | <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> | ||
Revision as of 08:24, 8 October 2024
<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>



















