Ajax and SSL

Ajax and SSL

Hi guys

I have this really weird problem... i have a simple page
  1. <head>
  2. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  3. <title>Insert title here</title>
  4. <script type="text/javascript" src="/scripts/my/jquery.js"></script>
  5. <script type="text/javascript">

  6. function x(){
  7. $.get("https://localhost:9443/test1.php", 
  8. function(data){ 
  9. alert(data);
  10. });
  11. }
  12. </script>
  13. </head>
  14. <body>
  15. <a id="tester" onclick="x(); return false;">test</a>
  16. </body>
  17. </html>
  18.  
So all this does is shows a "test" link... which when clicked tries to do an ajax call to a test1.php page which just returns some static text. 

when i go now to the page: http://localhost/test.html and press the "test" button everything works fine.

but when i try to go from https://localhost:9443/test.html and try to click the "test" button i get an error saying 302 temporarily moved in firefox...

can anyone help?

Thanks
Chris

and yes i need to use ssl cause all the actual pages have client specific information