01/2011

Bookmarks per Javascript im Firefox und ie anlegen

function addBookmark() {
	if(window.sidebar) {                  // Geckos wie FF
		window.sidebar.addPanel(document.title || location.href, location.href,"");
	}
	else if(window.external)  {           // IE
		window.external.AddFavorite(window.location.href, document.title || location.href);
	}
	else {
		alert("Hinweis:\nLeider konnte kein Lesezeichen gesetzt werden...");
	}
	return false;
}
more »