: Requiring the page to be loaded in a frame
You can require your tool to be loaded within a frame by following the instructions below:
- Login to your Website Toolbox account.
- Click the Custom HTML link.
- Insert the following code into the "Head" text box. If there is no "Head" textbox, the "Header" textbox can be used instead.
<script>
<!--
if (window.location == parent.top.location) {
document.location = "FRAME URL";
}
-->
</script>
Replace FRAME URL with the URL of the page that defines the frames of the page. This should be the HTML page which has a FRAMESET HTML tag used in it.
|