10 lines
368 B
JavaScript
10 lines
368 B
JavaScript
// Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
|
// for details on configuring this project to bundle and minify static web assets.
|
|
|
|
// Write your JavaScript code.
|
|
$(document).ready(function ($) {
|
|
$(".table-row").click(function () {
|
|
window.document.location = $(this).data("href");
|
|
});
|
|
});
|