asked on March 17, 2020
I'm trying to capture a value from any row in one column of a table, but it only works on the first row. What am I doing wrong? Thanks!
$ (document).ready(function () {
$(function() {
$('[id^=Field153]').click(function () {
alert($('[id^=Field153]').val());
});
});
});
0
0