I work with MVC 3. In a view I have 2 radio buttons. When I click on one of the two radiobuttons then I try with jquery to load a view. But it doesn's work.
I am completley new to MVC and jQuery.
Here is my code:
$('radioButtonFor#dutch').click(function () {
load('/MyController/MyView', parameterForTheView)
});
And here is one of the radio buttons:
@Html.RadioButtonFor(m => m.IsBelg, false, new { id = "dutch" })
Please help me!
Ronald