ajax .html() image not working on chrom and safari

ajax .html() image not working on chrom and safari

Hi guys,

I got an ajax that creates an image tag whenever a drop down for car brand is clicked, it works well in firefox and internet explorer, but doesn't show on safari and chrome

The ajax:
  1. $.ajax
  2.             ({
  3.                  type: "POST",
  4.                  url: "<?php echo base_url();?>index.php/welcome/brandlogo",
  5.                  data: "brandID=" + this.value,
  6.                  success: function(msg)
  7.                  {
  8.                     $("#brandlogo")
  9.                         .html(msg);
  10.                 }     
  11.                });
The logo image
  1. <td width="300" rowspan="7" align="center" nowrap="nowrap" id="brandlogo">&nbsp;</td>
where did I go wrong?

Thanks