$.getJSON('/stData/' + article, function (data) {
$.each(data.response, function (inc) {
data.response[inc].Subject, data.response[inc].Summary]);
});
table2.draw();
The function above simply creates a DataTable using a JSON request. I want, at the same time, to make the row clickable for every row using a URL from the JSON request, so when clicked it opens the corresponding URL.