I have tried navigator.canshare also but it's working in chrome desktop. It is giving undefined.
if (navigator.share) {
navigator.share({
title: 'Lot Quality Report',
text: 'Lot Link -',
url: ''
})
.then(() => console.log('Successful share')) //this is for sucess
.catch((error) => console.log('Error sharing', error));
} else {
console.log('Share not supported on this browser, do it the old way.');
alert('Share not supported on this browser, do it the old way.');
}
This code is not working on google chrome desktop in mac os. Any alternative I can use to run share functionality on google chrome desktop.
I have tried navigator.canshare also but it's working in chrome desktop. It is giving undefined.
if (navigator.share) {
navigator.share({
title: 'Lot Quality Report',
text: 'Lot Link -',
url: 'https://www.google.'
})
.then(() => console.log('Successful share')) //this is for sucess
.catch((error) => console.log('Error sharing', error));
} else {
console.log('Share not supported on this browser, do it the old way.');
alert('Share not supported on this browser, do it the old way.');
}
This code is not working on google chrome desktop in mac os. Any alternative I can use to run share functionality on google chrome desktop.
Share Improve this question edited Nov 1, 2022 at 6:57 naman verma asked Oct 31, 2022 at 5:06 naman vermanaman verma 1351 silver badge14 bronze badges1 Answer
Reset to default 10I have found the answer, in mac os we need to change the settings of browser . Url - https://winaero./chrome-to-get-web-share-api-support-on-desktop/
Click on - chrome://flags/#web-share >> enable >> relaunch browser