/* bookmarklet for extracting rev=canonical if it exists, or simply notifying if one does not */ (function(){ var url=document.location; var links=document.getElementsByTagName('link'); var found=0; for(var i = 0, l; l = links[i]; i++) { if (l.getAttribute('rev') == 'canonical' || (/alternate short/).exec(l.getAttribute('rel'))) { found=l.getAttribute('href'); break; } } if (!found) { for (var i = 0; l = document.links[i]; i++) { if (l.getAttribute('rev') == 'canonical') { found = l.getAttribute('href'); break; } } } if (found) { prompt('URL:', found); } else { alert('No canonical url found.'); } })();