Using jquery , how to check whether a table cell is empty or not?

Please help me.

link|improve this question
Related: stackoverflow.com/questions/376081/… – miku Dec 22 '09 at 11:41
feedback

5 Answers

What do you mean by empty.

//cell maycontain new lines,spaces,&npsp;,... but no real text or other element
$("cellselector").text().trim()=="";

or

//cell has no child elements at all not even text e.g. <td></td>
$("cellselector:empty")
link|improve this answer
feedback

You can use CSS selectors with the $ function to get a reference to the cell's element, and then use the html function to see whether it has any contents. For instance, if the cell has an ID "foo":

if ($("#foo").html()) {
    // The cell has stuff in it
}
else {
    // The cell is empty
}
link|improve this answer
Thank you. But all these works only in IE not in Firefox. I checked it now. – Yaswanth Dec 22 '09 at 12:06
Tested and works in IE7, FF3.5, Chrome3, Safari4, and Opera10. Test page: pastie.org/753004 Expected output: "foo has contents / bar is empty" Be sure to allow for whitespace; you may want to trim the string returned by html. – T.J. Crowder Dec 22 '09 at 12:24
feedback

Try this:

$content = $('#your_cell_id_here').html();

if($content == '')
{
  // yes it is empty
}
else
{
  // no it is not empty
}
link|improve this answer
feedback

You could add css classes to your table and its rows and columns, then use jquery selectors to get the table item:

if ( !($('#mytable tr.row-i td.column-j').html()) ) { alert("empty"); }
link|improve this answer
feedback

You can use the trechnique I posted here

http://www.keithrull.com/2010/06/09/HowToChangeTableCellColorDependingOnItsValueUsingJQuery.aspx

You can use this if you already know the id of the cell you want to check

$valueOfCell = $('#yourcellid').html();

or you can iterate on the cells of the table

$("#yourtablename tr:not(:first)").each(function() {                           
//get the value of the table cell located            
//in the third column of the current row             
var valueOfCell = $(this).find("td:nth-child(3)").html();                          
//check if its greater than zero             
if (valueOfCell == ''){                 
    //place action here
}             
else{                 
    //place action here
}         

});

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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