3 Matching Annotations
- Dec 2021
-
www.telerik.com www.telerik.com
Tags
Annotators
URL
-
-
-
If your site has multiple URLs for the same content, share the page's canonical URL instead of the current URL. Instead of sharing
document.location.href
, you would check for a canonical URL<meta>
tag in the page's<head>
and share that. This will provide a better experience to the user. Not only does it avoid redirects, but it also ensures that a shared URL serves the correct user experience for a particular client. For example, if a friend shares a mobile URL and you look at it on a desktop computer, you should see a desktop version:let url = document.location.href; const canonicalElement = document.querySelector('link[rel=canonical]'); if (canonicalElement !== null) { url = canonicalElement.href; } navigator.share({url});
-
- Oct 2021
-
Tags
Annotators
URL
-