Announcement

Collapse
No announcement yet.

How do I put in a bookmark?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • How do I put in a bookmark?

    I want to add the "BOOKMARK US" to my site. How do I do that? I imagine it's simple but I don't know how to do it.

    Oboe Girl
    BOSTONTERRIERGIFTS.COM This domain name is for sale. Owning a suitable domain name will help you achieve greater success in your career. For any business consultation about BOSTONTERRIERGIFTS.COM, please contact us! ! !
    Oboe Girl
    http://www.bostonterriergifts.com

  • #2
    Re: How do I put in a bookmark?

    You dont need a script for that one mate :)

    Simply add a line of text which says

    To bookmark this page pres CTRL+D

    Dolding CTRL and tapping the letter D is the standard keyboard shortcut to add a webpage to your list of bookmarks :)

    FPRULES


    Comment


    • #3
      Re: How do I put in a bookmark?

      Sorry, I guess I wasn't clear on what I wanted to do. I want to add the opportunity for people to bookmark my web site on the page of my website so they will add my site to their "Favorites."
      Oboe Girl
      http://www.bostonterriergifts.com

      Comment


      • #4
        Re: How do I put in a bookmark?

        Yes mate...CTRL+D will do it without the need to add clunky and chunky JavaScript. All you need to do is have a little line of text letting people know that they have that option. Many people don't use keyboard shortcuts so they are unaware of this quick way to add bookmarks to their favourites list.

        :)

        FPRULES


        Comment


        • #5
          Re: How do I put in a bookmark?

          You can cut & paste all the code that’s between the solid lines (not the solid lines) into your html box. These types of code wont work in some browsers but will in most. This one I believe will leave a message to press Ctrl+D if the browser is not compatible.

          __________________________________________________ ____________________


          <font face="Arial" size="3">
          <b>
          <script>
          .
          .
          .
          </script>
          </b>
          </font>

          <script language="JavaScript">
          <!--
          // ==============================================
          // www.collectors-info.com
          // ==============================================

          // message to show in non-IE browsers
          var txt = "Book mark us to your favorites we would like see you again!"
          // do not edit below this line
          // ===========================

          var url = this.location;
          var who = document.title;
          var ver = navigator.appName
          var num = parseInt(navigator.appVersion)
          if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
          document.write('<A HREF="javascript:window.external.AddFavorite(url,w ho);" ');
          document.write('onMouseOver=" window.status=')
          document.write("txt; return true ")
          document.write('"onMouseOut=" window.status=')
          document.write("' '; return true ")
          document.write('">'+ txt + '</a>')
          ______________________
          }else{
          txt += " (Ctrl+D)"
          document.write(txt)
          }

          //-->
          </script>
          __________________________________________________ _____________________



          Good luck

          Chris
          Regards Chris.

          Collectables, Collecting, collectors-info.com

          www.chrismorris.co.uk

          House build project

          Comment


          • #6
            Re: How do I put in a bookmark?

            Thank you FPRob & Chris. I'm using both ideas on different pages of my site. I really appreciate the help. You're great!!!
            Oboe Girl
            http://www.bostonterriergifts.com

            Comment


            • #7
              Re: How do I put in a bookmark?

              Coool, both should work fine... you will find that the JavaScript above won't work in broswers where people have JavaScript disabled though OG. People will get an error but most do have it enabled.

              Hehehe you can ignore this bit from the top of the above code as it has nothing in it...

              Code:
              [SIZE=3][FONT=Times New Roman]<font face="Arial" size="3"> [/FONT][/SIZE]
               [SIZE=3][FONT=Times New Roman]<b> [/FONT][/SIZE]
               [SIZE=3][FONT=Times New Roman]<script> [/FONT][/SIZE]
               [SIZE=3][FONT=Times New Roman]. [/FONT][/SIZE]
               [SIZE=3][FONT=Times New Roman]. [/FONT][/SIZE]
               [SIZE=3][FONT=Times New Roman]. [/FONT][/SIZE]
               [SIZE=3][FONT=Times New Roman]</script> [/FONT][/SIZE]
               [SIZE=3][FONT=Times New Roman]</b> [/FONT][/SIZE]
               [SIZE=3][FONT=Times New Roman]</font> 
              
              [/FONT][/SIZE]


              FPRULES


              Comment

              Working...
              X