image in tab header of jQuery UI Tabs

image in tab header of jQuery UI Tabs

I want to place image in tab header alongside tab name. I tried to use span element inside anchor tag. It is showing image but with "Loading.." text.



  1. .tick {
  2.       background: url("../../images/redTick.png") no-repeat scroll 0 0 transparent;
  3. }
  4. <li>
  5.       <a href="#1">Frame<span class="tick"></span></a>
  6. </li>