Is there an existing possibility to trigger the share functionality in local browsers on smartphones via HTML or JavaScript?
Of course there are many services which
It is possible and I wrote a function to have pretty content to share and observe the asynchronous side effects:
const shareContact = async (title, content) => { const text = `${title} ${content}`; try { await navigator.share({ text, }); } catch (e) { console.log(e); } };