
Poncho
MX$150.00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Share Button</title>
</head>
<body>
<button onclick="sharePage()">Share this page</button>
<script>
function sharePage() {
if (navigator.share) {
navigator.share({
title: document.title,
text: 'Check this out!',
url: window.location.href
})
.catch((error) => console.log('Error sharing:', error));
} else {
alert('Sharing not supported on this browser');
}
}
</script>
</body>
</html>
