Jump to content

bookmark problem


Recommended Posts

universal bookmark

 

 

<script>
var agent=navigator.userAgent.toLowerCase();
//document.write(agent);
var is_iphone = ((agent.indexOf('iphone'))!=-1);
var is_ipad = ((agent.indexOf('ipad'))!=-1);

function CreateBookmarkLink() {

title = "bookmark us";

url = '
"{$link->getPageLink>";

    if (window.sidebar) { // Mozilla Firefox Bookmark
        window.sidebar.addPanel(title, url,"");
    } else if( document.all ) { // IE Favorite
        window.external.AddFavorite( url, title); }
    else if(window.opera && window.print) { // Opera Hotlist
        return true; }
    else if(is_iphone || is_ipad){
     alert("Click the window forward button and select Add to Home screen after you click Ok");
    }else {
        alert("Press ctrl+D to bookmark (Command+D for macs) after you click Ok");
    }
}

</script>
<a href ="javascript:CreateBookmarkLink();" ><img border="0" src="if u want iamge its ur src" alt="Book Mark this website" title="Bookmark this website">

Link to comment
Share on other sites

universal bookmark

 

 

<script>

var agent=navigator.userAgent.toLowerCase();

//document.write(agent);

var is_iphone = ((agent.indexOf('iphone'))!=-1);

var is_ipad = ((agent.indexOf('ipad'))!=-1);

 

function CreateBookmarkLink() {

 

title = "bookmark us";

 

url = '"{$link->getPageLink>";

 

    if (window.sidebar) { // Mozilla Firefox Bookmark

        window.sidebar.addPanel(title, url,"");

    } else if( document.all ) { // IE Favorite

        window.external.AddFavorite( url, title); }

    else if(window.opera && window.print) { // Opera Hotlist

        return true; }

    else if(is_iphone || is_ipad){

     alert("Click the window forward button and select Add to Home screen after you click Ok");

    }else {

        alert("Press ctrl+D to bookmark (Command+D for macs) after you click Ok");

    }

}

</script>

<a href ="javascript:CreateBookmarkLink();" ><img border="0" src="if u want iamge its ur src" alt="Book Mark this website" title="Bookmark this website">

 

 

Many Thanks

Link to comment
Share on other sites

×
×
  • Create New...