IE does not allow to create a border around an empty cell hence a wise trick to apply here is in the script part write the following code .
$(document).ready(function(){
$(”td:empty”).html(” “);
}
The code replaces all empty cell data with blank spaces( ) and creating a border around empty data
