jquery on hide code example
Example 1: hidden jquery
$('#yourid').attr('hidden', false);
$('#yourid').attr('hidden', true);
Example 2: jquery show hide
$("#hide").click(function(){
$("p").hide();
});
$("#show").click(function(){
$("p").show();
});
Example 3: if (to_timing <= time) { $('#cancel').hide(); }
if (to_timing <= time) {
$('#cancel').hide();
}
Example 4: data attribute hide & show function syntax in jquery
$('.test').hide().filter('[data-word="AAA"][data-type="BBB"][data-number="2"]').show();