invoke browser 'back' function

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • bbxrider

    invoke browser 'back' function

    is it possible to mimic/invoke a browsers 'back' function,
    so the user could click a link/button/etc right on the page instead of being
    directed to 'use the browsers back button'
    if not html then perhaps java script?
    the problem i'm having is that i have a page that links out of cms page,
    can't really get the linked site content/page in my cms
    display area, so i link out to framed page where the top frame has the look
    and feel of my site and the bottom frame
    has the linked page, the only way i currently know to get fully back to
    original invoking page on the cms site is with the browser back
    function and would rather not have to do it that way
    hope this makes sense why i want to do this, but the basic question is the
    main thing



  • Jan Roland Eriksson

    #2
    Re: invoke browser 'back' function

    On Wed, 18 May 2005 18:08:03 -0700, "bbxrider" <bxtrap01@comca st.net>
    wrote:
    [color=blue]
    >is it possible to mimic/invoke a browsers 'back' function,
    >so the user could click a link/button/etc right on the page instead of being
    >directed to 'use the browsers back button'[/color]

    Not that I can see why you would have to "direct" any one at all on
    how to use his/her browser, but any way, this question in itself is as
    old as the www



    --
    Rex


    Comment

    • kaeli

      #3
      Re: invoke browser 'back' function

      In article <LYydndPHxYQYex bfRVn-2w@comcast.com> , bxtrap01@comcas t.net
      enlightened us with...[color=blue]
      > is it possible to mimic/invoke a browsers 'back' function,
      > so the user could click a link/button/etc right on the page instead of being
      > directed to 'use the browsers back button'
      > if not html then perhaps java script?[/color]

      <input type="button" value="Back" onClick="histor y.go(-1);">
      <a href="#" onClick="histor y.go(-1);">Back</a>

      The usual caveats about javascript apply.
      history.back() may be used instead of history.go(-1)

      --
      --
      ~kaeli~
      Those who get too big for their britches will be exposed in
      the end.



      Comment

      • bbxrider

        #4
        Re: invoke browser 'back' function

        thanks for the reply, if i can access the list on the visited stack, so much
        the better, its not a question of helping/telling folks how to use
        their browser but more the company's owners wanting it to appear that linked
        content comes from the company, just trying to get my job
        done
        "Jan Roland Eriksson" <jrexon@newsguy .com> wrote in message
        news:ribo81hjm3 0msq09468b260dq gdmc4l9nu@4ax.c om...[color=blue]
        > On Wed, 18 May 2005 18:08:03 -0700, "bbxrider" <bxtrap01@comca st.net>
        > wrote:
        >[color=green]
        > >is it possible to mimic/invoke a browsers 'back' function,
        > >so the user could click a link/button/etc right on the page instead of[/color][/color]
        being[color=blue][color=green]
        > >directed to 'use the browsers back button'[/color]
        >
        > Not that I can see why you would have to "direct" any one at all on
        > how to use his/her browser, but any way, this question in itself is as
        > old as the www
        >
        > http://ucan.foad.org/~abigail/HTML/M...ck_button.html
        >
        > --
        > Rex
        >
        >[/color]


        Comment

        • bbxrider

          #5
          Re: invoke browser 'back' function

          thansk for the reply
          "Jan Roland Eriksson" <jrexon@newsguy .com> wrote in message
          news:ribo81hjm3 0msq09468b260dq gdmc4l9nu@4ax.c om...[color=blue]
          > On Wed, 18 May 2005 18:08:03 -0700, "bbxrider" <bxtrap01@comca st.net>
          > wrote:
          >[color=green]
          > >is it possible to mimic/invoke a browsers 'back' function,
          > >so the user could click a link/button/etc right on the page instead of[/color][/color]
          being[color=blue][color=green]
          > >directed to 'use the browsers back button'[/color]
          >
          > Not that I can see why you would have to "direct" any one at all on
          > how to use his/her browser, but any way, this question in itself is as
          > old as the www
          >
          > http://ucan.foad.org/~abigail/HTML/M...ck_button.html
          >
          > --
          > Rex
          >
          >[/color]


          Comment

          • bbxrider

            #6
            Re: invoke browser 'back' function

            thanks for the reply
            "bbxrider" <bxtrap01@comca st.net> wrote in message
            news:LYydndPHxY QYexbfRVn-2w@comcast.com. ..[color=blue]
            > is it possible to mimic/invoke a browsers 'back' function,
            > so the user could click a link/button/etc right on the page instead of[/color]
            being[color=blue]
            > directed to 'use the browsers back button'
            > if not html then perhaps java script?
            > the problem i'm having is that i have a page that links out of cms page,
            > can't really get the linked site content/page in my cms
            > display area, so i link out to framed page where the top frame has the[/color]
            look[color=blue]
            > and feel of my site and the bottom frame
            > has the linked page, the only way i currently know to get fully back to
            > original invoking page on the cms site is with the browser back
            > function and would rather not have to do it that way
            > hope this makes sense why i want to do this, but the basic question is the
            > main thing
            >
            >
            >[/color]


            Comment

            Working...