I have a div with a title attribute:
<div id="video" title="<?php echo $row_rs_dealItem['video']; ?>">
Basically if the returned value from mysql is blank then I want to add a class. I have the following script:
$(document).ready(function(e) {
$('#video[title*=""]').addClass('invisible');
});
It seems really easy, so don't know what I'm doing wrong. THanks guys