Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Any reason you're doing this in JS? – Dunhamzzz May 29 '12 at 13:41

4 Answers

*= means "contains". All of your title attributes will contain the empty string. Just change it to =:

$('#video[title=""]').addClass('invisible');
share|improve this answer
Thanks mini tech, I'm sure I tried that, but I've changed so many things.... that worked!. – Pete Norris May 29 '12 at 13:41

Why do this in javascript?

I assume no title = not wanting to display the video?

if( !empty($row_rs_dealItem['video']) ) {
    echo '<div id="video" title="'. $row_rs_dealItem['video'] .'">';
}

As pointed out you could use this to add the class if you still want users to load the unused markup...

share|improve this answer
+1 or even add the class="invisible" attribute ... – ManseUK May 29 '12 at 13:40

haven't done this myself but suggest trying

if($("#video").attr("title") == "") {
 $("#video").addClass("invisible");
}
share|improve this answer

Why dont you do this instead from php

echo '<div id="video" title="'. $row_rs_dealItem['video'] .'" class ="'. ((!$row_rs_dealItem['video'])?"invisible":"").'">';
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.