Skip to content

Instantly share code, notes, and snippets.

@Maxghp
Created April 28, 2016 09:31
Show Gist options
  • Select an option

  • Save Maxghp/4ae1a5804189d01e6eb7257ccd4d9c03 to your computer and use it in GitHub Desktop.

Select an option

Save Maxghp/4ae1a5804189d01e6eb7257ccd4d9c03 to your computer and use it in GitHub Desktop.
<script>
$(document).ready(function(){
//cycle
$(document).find(".na td").each(function () {
//the element length which == 0
var len = $(this).html().trim().length;
if(len == 0) {
//do something
$(this).text("N/A");
$(this).css("background","red");
}
})
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment