Takip ediliyor'); } else { button.removeClass("following"); button.html(' Takip et'); } } }); }); // Share functionality $(document).on('click', '.share-button', function() { var id = $(this).data('id'); var url = 'https://yokyahu.com/question/' + id; // Check if the Web Share API is available if (navigator.share) { navigator.share({ title: 'Paylaş', url: url }).catch(console.error); } else { // Fallback: copy to clipboard var tempInput = document.createElement('input'); tempInput.value = url; document.body.appendChild(tempInput); tempInput.select(); document.execCommand('copy'); document.body.removeChild(tempInput); alert('Bağlantı kopyalandı: ' + url); } });});