Problems with jQuery tabs in IE

Problems with jQuery tabs in IE

Hello,

I have a rendering problem using jQuery tabs in ie7 that I hope someone can help out with:

The UI Version is: jQuery UI 1.8

Only in IE do the 'ies' characters in the word 'Categories' not get rendered.  Any ideas on how to fix this?

By the way browser versions are:
  • Firefox (3.6)  (renders fine)
  • Chrome (4.1.249.1045 (42898) (renders fine).
  • IE : 7.0.5730.13 (problem browser)

Here's the html (taken from the sample index.html file):


<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>jQuery UI Example Page</title>
<link type="text/css" href="css/mint-choc/jquery-ui-1.8.custom.css" rel="stylesheet" />
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.custom.min.js"></script>
<script type="text/javascript">
$(function(){
// Tabs
$('#tabs').tabs();
});
</script>
<style type="text/css">
/*demo page css*/
body{ font: 62.5% "Trebuchet MS", sans-serif; margin: 50px;}
.demoHeaders { margin-top: 2em; }
#dialog_link {padding: .4em 1em .4em 20px;text-decoration: none;position: relative;}
#dialog_link span.ui-icon {margin: 0 5px 0 0;position: absolute;left: .2em;top: 50%;margin-top: -8px;}
ul#icons {margin: 0; padding: 0;}
ul#icons li {margin: 2px; position: relative; padding: 4px 0; cursor: pointer; float: left;  list-style: none;}
ul#icons span.ui-icon {float: left; margin: 0 4px;}
</style>
</head>
<body>
<!-- Tabs -->
<h2 class="demoHeaders">Tabs</h2>
<div id="tabs">
<ul>
<li><a href="#tabs-1">First</a></li>
</ul>
<div id="tabs-1">
   <table>
       <tr>
           <td>Categories</td>
       </tr>
   </table>
</div>
</div>

</body>
</html>