function restults(data) { $("div.info").show(); $("div.info").append("ID: "+data.nombre); $("div.info").append("M2: "+data.website); } $(document).ready(function(){ $("#200").click(function(){ $.ajax({ data: "id=2", type: "GET", dataType: "json", url: "json-prensa.php", success: function(data){ restults(data); } }); }); });