Skip to content

Instantly share code, notes, and snippets.

@mehmetsarr
Created February 25, 2025 00:07
Show Gist options
  • Save mehmetsarr/c004a784b3d153cd84ac7ba6fefc0abd to your computer and use it in GitHub Desktop.
Save mehmetsarr/c004a784b3d153cd84ac7ba6fefc0abd to your computer and use it in GitHub Desktop.
Sosyal Medya Paylaş Butonları
<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