toolbar --> standard buttons

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

    toolbar --> standard buttons

    i've removed toolbar from my page and created my own buttons

    what is the javascript for each of this buttons
    i'm using IE

    back
    forward
    stop
    refresh
    home (or set as home)
    favorites (add to)


  • Andrew Thompson

    #2
    Re: toolbar --> standard buttons

    On Sun, 5 Sep 2004 01:32:11 +0200, Mario wrote:
    [color=blue]
    > i'm using IE[/color]

    Is anybody else using your web-pages,
    or is it just you?

    --
    Andrew Thompson
    http://www.PhySci.org/ Open-source software suite
    http://www.PhySci.org/codes/ Web & IT Help
    http://www.1point1C.org/ Science & Technology

    Comment

    • Randy Webb

      #3
      Re: toolbar --> standard buttons

      Mario wrote:
      [color=blue]
      > i've removed toolbar from my page and created my own buttons[/color]

      I bet you haven't.
      [color=blue]
      > what is the javascript for each of this buttons
      > i'm using IE
      >
      > back[/color]

      history.go(-1)
      [color=blue]
      > forward[/color]

      history.go(1)
      [color=blue]
      > stop
      > refresh[/color]

      location.reload ()
      [color=blue]
      > home (or set as home)
      > favorites (add to)[/color]

      window.external .AddFavorites

      All of which, had you searched the archives, could have been found by
      you. Learn to search.

      --
      Randy
      comp.lang.javas cript FAQ - http://jibbering.com/faq

      Comment

      • Ian Sedwell

        #4
        Re: toolbar --> standard buttons

        Hi Mario

        Why would you want to do this? I can think of very few circumstances indeed
        in which one might want to hide the toolbar without prejudicing the user.
        But I can of no circumstances at all under which I might want to replace the
        buttons with buttons of my own that provide exactly the same functionality.

        A couple of maxims for you:

        1. Never reinvent the wheel.
        2. If it ain't broke, don't fix it.
        3. Never make unnecessary work - unless the client absolutely demands it and
        is willing to pay.

        All the best

        Ian


        On 2004/09/05 00:32, in article chdjbq$uq0$1@ba gan.srce.hr, "Mario"
        <mario.vargek@p ublic.srce.hr> wrote:
        [color=blue]
        > i've removed toolbar from my page and created my own buttons
        >
        > what is the javascript for each of this buttons
        > i'm using IE
        >
        > back
        > forward
        > stop
        > refresh
        > home (or set as home)
        > favorites (add to)
        >
        >[/color]

        Comment

        Working...