var p = 1; function medias_show(p) { $.ajax({ url: "http://tagtoru.tokyo/medias/show_beok?at=8673b3d3244569789d555bfe939ada9a&p="+p, type: "GET", cache: false, crossDomain: true, dataType: "html" }).done(function(data) { $container = $("div.inner-insta"); var el = $(data); el.css('display', 'none'); $container.append(el); el.css('display', 'inline'); }).fail(function(data){ }); } $(function(){ medias_show(p); });