Created
February 25, 2025 00:07
-
-
Save mehmetsarr/c004a784b3d153cd84ac7ba6fefc0abd to your computer and use it in GitHub Desktop.
Sosyal Medya Paylaş Butonları
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
function generalShare(e, title, url) { | |
e.preventDefault(); | |
if (navigator.share) { | |
navigator | |
.share({ | |
title: title, | |
url: url | |
}) | |
.then(() => { | |
console.log("Paylaşım için teşekkürler!"); | |
}) | |
.catch(console.error); | |
} else { | |
alert("Tarayıcınız Web Paylaşım API'sini desteklemiyor"); | |
} | |
} | |
</script> | |
View: | |
<a onclick="generalShare(event, '<?= esc($blog['blog_baslik']) ?>', '<?= base_url('blog') ?>/<?= esc($blog['blog_slug']) ?>.html')"><i class = "icon icon ion-share"></i></a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment