I want to use the JQuery variable/value in the ASP.NET MVC Action link, So I need to use $("#JobGR :radio:checked").val()
in below line of code :
@Html.ActionLink("Insert", "InsertPersonJob","Reg" , new {JobNo=$("#JobGR :radio:checked").val(), PersonID=User.Identity.Name },null)
I receive an error on $
, Please help me how I can solve this issue.