Ajax
<script type="text/javascript" src="prototype.js"></script>
function ajax_action() {
var ajax = new Ajax.Request(
url,
{
method: 'get',
parameters: params,
onComplete: showResponse
}
);
}
function showResponse() {
}
Comments