JS (JavaScript) Add website to Favorites

Source: Internet
Author: User

    • |
    • Browse:688
    • |
    • Updated: 2014-09-20 19:39
    • 1
    • 2
    • 3
Step through Reading

Add website URL to favorites for next visit!

Tools/Materials
    • Url
    • Computer.
Method/Step
  1. Create Add to Favorites JS function

    <script type= "Text/javascript" >

    Define Add to Favorites function

    function Join_favorite (SiteURL, SiteName) {

    Capturing exceptions in the favorites process

    try {

    Determine if the browser supports document.all

    if (document.all) {

    Add external to Favorites if supported

    Window.external.addFavorite (Siteurl,sitename);

    }else if (Window.sidebar) {

    If Window.sidebar is supported, add to favorites in the following ways

    Window.sidebar.addPanel (SiteName, SiteURL, ");

    }

    }

    Handling Exceptions

    catch (e) {

    Alert ("Add to Favorites failed, please use ctrl+d shortcut keys for adding action!");

    }

    }

    </script>

  2. Call to join a collection function

    <a href= "javascript:void (0);" title= "Wecandoitforev-baidujingyan" onclick= "Join_favorite (window.location, Document.title); " > Add to Favorites </a>

  3. <! DOCTYPE HTML PUBLIC "-//w3c//dtd HTML 4.01 transitional//en" "HTTP://WWW.W3.ORG/TR/HTML4/LOOSE.DTD" >

    <meta http-equiv= "Content-type" content= "text/html; Charset=utf-8 ">

    <title> Add to Favorites </title>

    <script type= "Text/javascript" >

    Define Add to Favorites function

    function Join_favorite (SiteURL, SiteName) {

    Capturing exceptions in the favorites process

    try {

    Determine if the browser supports document.all

    if (document.all) {

    Add external to Favorites if supported

    Window.external.addFavorite (Siteurl,sitename);

    }else if (Window.sidebar) {

    If Window.sidebar is supported, add to favorites in the following ways

    Window.sidebar.addPanel (SiteName, SiteURL, ");

    }

    }

    Handling Exceptions

    catch (e) {

    Alert ("Add to Favorites failed, please use ctrl+d shortcut keys for adding action!");

    }

    }

    </script>

    <body>

    <a href= "javascript:void (0);" title= "Wecandoitforev-baidujingyan" onclick= "Join_favorite (window.location, Document.title); " > Add to Favorites </a></body>

  4. Run Tests

  5. Add to Favorites success!!

    END
Precautions
    • Call JS Join function, pass the current URL parameter: window.location;
    • Call JS Join function, pass the current site name parameter: Document.title.

JS (JavaScript) Add website to Favorites

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.