List Nav plugin issues in IE6
Hello.
After much work I finally got a basic example going but when used in IE6, hovering over a letter in the listnav throws a javascript error. Ive tried this with a local copy of jquery 1.4.2 and the google api version as well.
Here is an example using external sources for css and JS only.
* please note this only happens when I use this example but does not happen on the online demo, so obviously it is something I am missing.
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Nav List</title>
<link rel="stylesheet" href="http://www.ihwy.com/Labs/downloads/jquery-listnav/2.0/listnav.css" type="text/css" media="screen, projection"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
<script type="text/javascript" src="http://www.ihwy.com/Labs/downloads/jquery-listnav/2.1/jquery.listnav.pack-2.1.js"></script>
<script type="text/javascript">
$(function(){
$('#myList').listnav();
});
</script>
<style type="text/css">
<!--
#myList li {
background-color: #00FF00;
display: none;
}
-->
</style>
</head>
<body>
<p>Brands we represent</p>
<p> </p>
<div id="myList-nav" class="listNav"></div>
<ul id="myList">
<li><a href="http://www.arkramos.com" target="_blank">Test Link</a></li>
<li><a href="http://www.abhmfg.com" target="_blank">Test Link</a></li>
<li><a href="http://www.accurate.com" target="_blank">Test Link</a></li>
</ul>
</body>
</html>