find text and hide jquery code example
Example 1: attr hidden to show jquery
$(':checkbox').change(function(){
$('#delete').removeAttr('hidden');
});
Example 2: data attribute hide & show function syntax in jquery
$('.test').hide().filter('[data-word="AAA"][data-type="BBB"][data-number="2"]').show();