html a hidden code example
Example 1: html hidden
this will show
Thill will not show
Example 2: how to change hidden on html
$('#check').change(function() {
$("#delete").prop("hidden", !this.checked);
})
this will show
Thill will not show
$('#check').change(function() {
$("#delete").prop("hidden", !this.checked);
})