I m in a situation where i need to call a action method of different controller
I mean I am currently in controller 'Wk' action -History's On this view when i click any link then an ajax call will call the action method of different controller. But the ajax call calls the action method of the same controller.
the jquery is -
$.get("History/20/5/2", function (data) {
$("div#dShow").html(data);
$("div#dShow").dialog({
opacity: 0,
height: 700,
width: '1024px',
show: 'blind',
hide: 'blind'
}).animate({
opacity: 1
}, 3000, function () {
// Animation complete.
});
});