Code: Select all
function nuSelectBrowse(e) {
var row = $('#' + e.target.id).attr('data-nu-row');
$("[data-nu-row='" + row + "']").each(function() {
alert($(this).html());
});
}
Code: Select all
function nuSelectBrowse(e) {
var row = $('#' + e.target.id).attr('data-nu-row');
$("[data-nu-row='" + row + "']").each(function() {
alert($(this).html());
});
}