Znalazłem na forum taki kod:
<?php function ulubione() { //IE if ((navigator.userAgent.toLowerCase().indexOf('msie') > 0) && window.external) { window.external.AddFavorite('http://site.com',document.title); } //FF || OPERA else if (window.sidebar) { window.sidebar.addPanel(document.title,'http://site.com',""); } //INNE else { alert('Naciśnij ctrl+d'); } return false; } ?>
I nie wiem jak go użyć żeby działał po kliknięciu na jakiś przycisk.
Mam jeszcze problem z validatorem. Wyświetla mi takie błędy:
"DOCTYPE" declaration not allowed in instance.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
document type does not allow element "html" here.
<html xmlns="http://www.w3.org/1999/xhtml" lang="pl">
Jak to naprawić ?
-------------------------
poprawiłem kod tak
żeby strona się nie rozjeżdżała
~Cienki1980