Sending normal request in jquery ( not ajax)

asp.net-mvc-3, javascript, jquery

Solution

window.location.href = '/controller/action?foo=bar';

Problem

Is there any method in jquery like $.post , $.ajax etc which works like a normal form submission. I know about `.submit()` but it requires a form element , can we send a normal request without a form element in jquery?

Original source