function clickSearchResult(resId) { var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if (xhr.readyState == XMLHttpRequest.DONE) { if (xhr.status !== 200) { alert(xhr.status + ": " + xhr.response); return; } data = xhr.responseText; document.getElementById("gril-list").innerHTML += data; } } xhr.open('POST', window.location, true); xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); xhr.send('id=' + resId); }