1239 gün önce siteye youtube canli yayin chat'i ekleme
sorusunu cevapladı.
<iframe allowfullscreen="" frameborder="0" height="100%" src="https://www.youtube.com/live_chat?v=CANLIYAYINEMBEDKODU&embed_domain=SITENIZINDOMAINI.COM"></iframe>
embed ile ekleniyormus. belki bir gun birinizin isine yarayacak
1241 gün önce ajax ile download
sorusunu cevapladı.
<code>
function download(fileUrl, fileName) {
var a = document.createElement("a");
a.href = fileUrl;
a.setAttribute("download", fileName);
a.click();
}
download("https://www.test.com/test.jpg", "test.jpg");
</code>