1$.ajax({
2 // edit to add steve's suggestion.
3 //url: "/ControllerName/ActionName",
4 url: '<%= Url.Action("ActionName", "ControllerName") %>',
5 success: function(data) {
6 // parse your data here
7 alert(data);
8 }
9});