Search Tutorials
Killing the Browser Back ButtonThis tutorial explains how to temporarily disable a visitor's browser Back button, so that a wayward click will not bounce them back to the beginning of your intro, or whatever. This technique is pretty simple, but demands some familiarity with HTML. Essentially, you will be creating a hidden frame that will intercept a user's "Back" request and cycle it without visible effect. Note that this is a bit of an abuse of HTML, but it works and is robust, so who's complaining? The only down side is that you may wish to avoid using this technique on your initial entry page into the site, as some search engines may fail to index the page the way you want.
First, let's assume you already have a fully realized website, perhaps one that is a single self-contained .swf, and you want people to be able to navigate within it without accidently hitting the Back button and being bounced out of your site entirely. Here's what you can do: Part IHere is the HTML for the frameset...this resides on the page that you want the "buttonkiller" to start doing it's job. (I have used parenthesis instead of brackets so you can read it) <FRAMESET ROWS=*,1 FRAMEBORDER=no MARGINWIDTH=0 MARGINHEIGHT=0 BORDER=0 FRAMESPACING=0> <FRAME NAME="main" SRC="main.html" SCROLLING=no FRAMEBORDER=no MARGINWIDTH=0 MARGINHEIGHT=0 BORDER=0 FRAMESPACING=0> <FRAME NAME="buttonkiller" SRC="buttonkiller.html" SCROLLING=no FRAMEBORDER=no MARGINWIDTH=0 MARGINHEIGHT=0 BORDER=0 FRAMESPACING=0> </FRAMESET> It creates a page with two frames...the top frame is your site. The bottom frame, which is hidden from view, contains the "buttonkiller"...a simple html page with a single, tiny .swf that automatically calls a second html page into that frame. (see the .fla)
|
|||||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||