top of page
Widget Didn’t Load
Check your internet and refresh this page.
If that doesn’t work, contact us.
bottom of page
// Butona tıklanınca çalışacak fonksiyon $w.onReady(function () { $w("#addVideoButton").onClick(() => { let videoUrl = $w("#videoUrlInput").value; // Inputtan URL alınıyor if (videoUrl) { $w("#videoPlayer").src = videoUrl; // Video Player'a URL atanıyor $w("#videoPlayer").show(); // Video görünür hale geliyor } else { wixWindow.alert("Lütfen bir video URL'si girin."); } }); });