$('tr td:first-child').click(function() {
var value = $(this).text();
// $("#showgrid").load('/Product/List/Item/' + value);
$("#showgrid").load('<%= Url.Action("Item", "List") %>/' + n + "?q=" + value);
});
Can I use like this to execute List Item Action result?
what is the best way to send the value with the URL? the above commented URL working fyn for me is there any way other way to use this?>
Thanks