Hi, I download the stable package Jquery 1.3.2 + ui 1.7.1 from the site and just modified the sample page to try. And I keep on getting: "Exception thrown and not caught" error for the following simple page, basically just one jquery line with some HTML code. This happens for IE7.0 on XP.
========================================================= <!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/smoothness/jquery- ui-1.7.1.custom.css" rel="stylesheet" /> <script type="text/javascript" src="js/jquery-1.3.2.min.js"></ script> <script type="text/javascript" src="js/jquery- ui-1.7.1.custom.min.js"></script> <script type="text/javascript"> $(function(){ $("a:not([...@href*=mysite])").append("<span class='External'>?</ span>"); }); </script> </head> <body> <h1>Welcome to jQuery UI!</h1> <p style="font-weight: bold; margin: 2em 0 1em; font-size: 1.3em;">YOUR COMPONENTS:</p> <!-- Accordion --> <h2 class="demoHeaders">Accordion</h2> <div id="accordion"> <div> <h3><a href="aaa">First</a></h3> <div>Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet.</div> </div> </div> </body> </html>