jQuery.post
$.post( url, data, callback, type );
として使う。
$.post('http://localhost/tasktool/taguchis/ajax_add', {
title: $("#TaguchiTitle").val()
}, function(rs) {
$("#taguchis").prepend(rs);
$("#TaguchiTitle").val('').focus();
});