ok heres what i have... it works fine but it looks for a word rather than content. i just want it to show when there is any content..
$(document).ready(func
If you want to check for text, you can use the text() method:
text()
$(document).ready(function(){ if ($("#box3").text().length > 0) { $('#third').show(); } });
Or for html:
$(document).ready(function(){ if ($("#box3").html().length > 0) { $('#third').show(); } });