﻿function resimler() {
    bindResim();
}
function bindResim() {
    $.getJSON("API/Resim.aspx", { type: "random" }, function(j) {
        var options = '';
        for (var i = 0; i < j.length; i++) {
            options += '<img src="' + j[i].Src + '">' + j[i].OtelAdi + '</option>';
        }
        $("#resimler").html(options);
    })
}
