Makaleler
function getCurrentURL() {
return window.location.href;
}
function getPageTitle() {
return document.title;
}
function shareOnWhatsApp() {
var blogPostURL = getCurrentURL();
window.open(
"https://api.whatsapp.com/send?text=" + encodeURIComponent(blogPostURL + " - " + getPageTitle()),
"_blank"
);
}
function shareOnLinkedIn() {
var blogPostURL = getCurrentURL();
window.open("https://www.linkedin.com/shareArticle?url=" + encodeURIComponent(blogPostURL), "_blank");
}
function shareOnX() {
var blogPostURL = getCurrentURL();
window.open("https://x.com/spi/shares/new?url=" + encodeURIComponent(blogPostURL), "_blank");
}
function shareOnFacebook() {
var blogPostURL = getCurrentURL();
window.open("https://www.facebook.com/sharer/sharer.php?u=" + encodeURIComponent(blogPostURL), "_blank");
}
const copyUrlButton = document.querySelector(".copy-url-button");
copyUrlButton.addEventListener("click", () => {
// Sayfanın URL'ini panoya kopyala
const url = document.location.href;
navigator.clipboard.writeText(url);
// Bir bildirim göster
alert("Bağlantı panoya kopyalandı.");
});