How to hide if the input text is null. this are my script code
$(document).ready(function(){
var taena = document.getElementById("no2").value;
if (taena === "") {
$('#hideall').hide();
else{
$('#hideall').show();
}
});