hocam altaki kod çalışmadı hiç çalışmadı üst teki kod ise çalıştı ama sayfa kitlendi çok fazla işlem yaptı hocam şöyle js scriptim var youtube dan video çekiyorum 24 tane arama yaparak js dosyası bu şekilde

function tplawesome(e,t){res=e;for(var n=0;n
$(function() {
$("#formm").on("submit", function(e) {
e.preventDefault();
// prepare the request
var request = gapi.client.youtube.search.list({
part: "snippet",
type: "video",
q: encodeURIComponent($("#note-textarea").val()).replace(/%20/g, "+"),
maxResults: 24,
order: "viewCount",
publishedAfter: "2000-01-01T00:00:00Z"

});
// execute the request
request.execute(function(response) {
var results = response.result;
$("#results").html("");
$.each(results.items, function(index, item) {
$.get("tpl/item.php", function(data) {
$("#results").append(tplawesome(data, [{"title":item.snippet.title, "videoid":item.id.videoId}]));
});
});
resetVideoHeight();
});
});

$(window).on("resize", resetVideoHeight);
});

function resetVideoHeight() {
$(".video").css("height", $("#results").width() * 9/16);
}

function init() {
gapi.client.setApiKey("*****************************");
gapi.client.load("youtube", "v3", function() {
// yt api is ready
});
}


arama yapıldığında sonuçları item.html dosyasına yazıyor 24 tane div oluşuyor ama onlara id vermem gerek item.html dosyası normalde bu şekilde