-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 872 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head></head>
<body style="background-color: #000; color: #fff;">
<h1>Include One Plus Content in an IFrame</h1>
<p>
This is a static page including the CH-JS content in an IFrame
</p>
<p>The Iframe is included below</p>
<iframe
frameborder="0"
name="sopetitio"
onload="window.top.scrollTo(0,0);"
scrolling="no"
src="https://onepluscontent.chdev.lovelysystems.com/"
width="100%"
id="sopetitio"
style="overflow: hidden;"></iframe>
<p>This is the parent content again.</p>
<script type="text/javascript" src="/iframeResizer.min.js"></script>
<script type="text/javascript">
iFrameResize({log:true, minHeight: 600}, '#sopetitio');
</script>
</body>
</html>