Hello
I have table which has a class "data" and it has table rows inside it's tablebody as it should be.
By jquery, I want to apply a masking plugin function to the each input text of its row.
I have tried this but it doesn't seem to work for me.
$('.data tbody tr').each(function() {
$(this, "input:checkbox").setMask();
});