I am trying to make a row in a table link to the edit page. I know the links are being created, because I can print them out. I am close, but am missing something importan
Here is my take to make those links, remote: true
remote: true
$("tr[data-link]").click(function () { $.ajax({ url: this.getAttribute('data-link'), dataType: "script", type: "GET" }); event.preventDefault(); });