// ----------------------------------------------------------------------- // example_author.js // // Dec/18/2016 // // ----------------------------------------------------------------------- jQuery (function () { jQuery("#outarea_aa").text ("*** example_author *** start ***") var url_in = "http://cddn007:5984/librivox/Melville?callback=?" jQuery.getJSON (url_in,function (data_in) { var str_out = "" str_out += "" str_out += "" str_out += "" str_out += "" str_out += "" str_out += "" for (var it in data_in.books) { var book_cur = data_in.books[it] str_out += "" str_out += "" str_out += "" str_out += "" str_out += "" str_out += "" } str_out += "
noidtitletotaltime
" + it + "" + book_cur.id + "" + book_cur.title + "" + book_cur.totaltime + "
" jQuery(".contents").html (str_out) }) jQuery("#outarea_hh").text ("*** example_author *** end ***") }) // -----------------------------------------------------------------------