Forum Moderators: open
Any help or sources would be appreciated.
Your question may be re frontpage problems only, and I have no working knowledge of FP or WYSIWYG editors. However, you can do all of what you ask using 'standard' coding/javascript. I happen to have the code for the back button handy. I believe there's also a recent thread in this forum on sizing a window and stripping the toolbar, perhaps someone will drop the url.
<FORM>
<INPUT TYPE="button" VALUE="Go Back" onClick="history.back()">
</FORM>
Is there a way to launch IE internally and not show toolbars directly instead of launching a new window after IE is open. The reason i need this is for internal document viewing for a project i am working on. The entire web is contained locally on the network with no external access.
So the scenario is this...user clicks on my html document across the network. It would be nice if it automatically opens an IE window with the toolbar removed. This of course assumes that IE is closed at the time and a fresh window is required.
I have worked with the other script and it's fine, the added touch of the first screen with no toolbars is desierable though.
On the issue of the back button, is there a way to customize the appearance of the button? (Apologies if this is obvious, i'm new at this)
No way I know of to strip the toolbars on the first page.
To customize the back button, see posts by Xoc and NFFC in this thread
[webmasterworld.com...]
You could even contain all this in one document by checking for the window.opener object:
if (!window.opener) {
no window opener? then open new window, load the same document and close this window
}
When this reloads the script will find the existing window.opener object and not run the script again.
J