Skip to content

Instantly share code, notes, and snippets.

@vigikaran
Created January 31, 2017 13:06
Show Gist options
  • Save vigikaran/2bd9af5cfaaf0b2588aa7fde0e2613e7 to your computer and use it in GitHub Desktop.
Save vigikaran/2bd9af5cfaaf0b2588aa7fde0e2613e7 to your computer and use it in GitHub Desktop.
$.getJSON( "/notice?type=json", function( data ) {
var items = [];
$.each( data, function(e) {
items.push('<a href="'+e.url+'" target="_blank"><h2 class="cd_notice_tit">'+e.title+'</h2><div class="cd_notice_detail"><div class="cd_not_img_dv"><span class="cd_ntce_main_name">'+e.name+'</span>
<div class="cd_ntce_main_div"><div class="cd_n_img"><img src="'+e.img+'" alt=""></div><div class="cd_nt_img_lft"><div class="cd_name">'+e.born+'</div>
<div class="cd_name">'+e.live+'</div><div class="cd_name">'+e.date+'</div></div></div></div></div></a></div><div class="cd_notice_box">
');
});
$("#notice").html(items.join(""));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment