jQueryの履歴
ajax
$.ajax({ dataType: "json", data: { "key": "value" }, cache: true, url: "http://path/to/request/", success: function (data) { alert(data); } });
onloadみたいなやつ
$(document).ready(function(){ ... }
$.ajax({ dataType: "json", data: { "key": "value" }, cache: true, url: "http://path/to/request/", success: function (data) { alert(data); } });
$(document).ready(function(){ ... }