bookmark question

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • eiht_98
    Confirmed User
    • Jan 2001
    • 6103

    #1

    bookmark question

    lets say I have a website...the first "Index.html" page consists only of sponsors and links exchange and at the bottom of the page is a link to the galleries page...is there a way that when a user tries to bookmark the gallery page he actually bookmarks the index.html (links) page...sorry for my english, I hope ya'll understand what I'm tryin' to say...bye
  • Poizon
    Confirmed User
    • Feb 2001
    • 157

    #2
    throw a little java-script in there. I've got a similar script somewhere on this comp, I'll look it up if ya really want me to.

    ------------------
    Sometimes you just don't get it.

    Poizon
    ICQ-84284401--I'm currently

    Comment

    • eiht_98
      Confirmed User
      • Jan 2001
      • 6103

      #3
      that would be cool

      Comment

      • HQ
        Confirmed User
        • Jan 2001
        • 3539

        #4
        I'd also like to see this. You can make your own 'bookmark us' link that bookmarks anything you want. but i don't know how to manipulate the IE menu itself.

        ------------------
        HQ

        Comment

        • Shannon
          Registered User
          • Feb 2001
          • 43

          #5

          Just place this code into the link you want them to click to bookmark and replace the url with the page you want to be bookmarked when they click it - That way you can direct all your bookmarkers to the page you desire...

          javascript:window.external.AddFavorite('http://www.bookmarked.com/url/index.html', 'Site Description');

          Best Of Luck

          Comment

          • HQ
            Confirmed User
            • Jan 2001
            • 3539

            #6
            Shannon, i think what we were getting at was if someone uses the menu, not a link on your page, to create the bookmark.

            Sorry if we weren't talking about that!! and thanks for reply!!

            Anyone know how to manipulate the IE or netscape menus (to bookmark the main page when the surfer's in the gallery)???



            ------------------
            HQ

            Comment

            • eiht_98
              Confirmed User
              • Jan 2001
              • 6103

              #7
              I found the script that allows to access the website only from the url specified in the script...it works also if a user tries to access it from the Favorites menu in IE..here it is...

              < !-- ONE STEP TO INSTALL MUST VISIT FROM....:

              1. Copy the coding into the HEAD of your HTML document -->

              < !-- STEP ONE: Paste this code into the HEAD of your HTML document -->

              <HEAD>

              <SCRIPT LANGUAGE="JavaScript">

              < !-- This script and many more are available free online at -->
              < !-- The JavaScript Source!! http://javascript.internet.com -->

              < !-- Begin
              var requiredfrom = "index.html"; // required prev. page
              if (document.referrer.indexOf(requiredfrom) == -1) {
              alert("You must come to this page from " + requiredfrom);
              window.location=requiredfrom;
              }
              // End -->
              </script>

              <center>
              <font face="arial, helvetica" size="-2">Free JavaScripts provided

              by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
              </center>

              < !-- Script Size: 0.62 KB -->

              Comment

              • eiht_98
                Confirmed User
                • Jan 2001
                • 6103

                #8
                hmmm...how can I disable the HTML....is there any other way I can post the code?

                Comment

                • cygnet74
                  Registered User
                  • Jan 2001
                  • 41

                  #9
                  link to the page you found it on...

                  ------------------
                  Addison Brock III
                  webmaster at MyGirlz.com
                  traffic trade?
                  Addison Brock III
                  webmaster of MyGirlz.com
                  traffic trade?

                  Comment

                  • eiht_98
                    Confirmed User
                    • Jan 2001
                    • 6103

                    #10
                    here it is
                    http://javascript.internet.com/user-...isit-from.html

                    Comment

                    • Poizon
                      Confirmed User
                      • Feb 2001
                      • 157

                      #11
                      well, if you use the code tag for this ubb, you can post pure script without anything being converted. I am pretty sure it does...It works as the pre-formatted text tags. Or you can just view the source of this page It'll show everything.

                      ok, testing.........
                      Code:
                      <html>
                        <head>
                         <title>BLAH</title>
                        </head>
                       <body>
                        hi
                       </body>
                      </html>
                      *added* guess not *added*
                      ------------------
                      Sometimes you just don't get it.





                      [This message has been edited by Poizon (edited 02-15-2001).]
                      Poizon
                      ICQ-84284401--I'm currently

                      Comment

                      • Animal
                        So Fucking Banned
                        • Aug 2003
                        • 126

                        #12

                        Comment

                        Working...