I have the following Javascript code:
var idJS;
$('.disp').click(function () {
idJS = $(this).attr("id");
})
And then I want to do this:
@Ajax.ActionLink("myMethod", "myMethod", "HomeController", new { id = idJS },
new AjaxOptions() { HttpMethod = "Get", UpdateTargetId = "myDiv" })
Is it possible to do this?