Is this a valid jquery conditional statement?
- by Pandiya Chendur
if (tag == 'td' && $(this).hasClass('status')) {
// I am clearing everything inside the td with class status
$(this).html('')
}
But it doesn't seem to clear... Any suggestion...