Hi there,

I am a bit stuck with IE security.
I am trying to execute javascript after the AJAX request but this is
not working on IE when running site on HTTPS. When site is on http
AJAX works just fine.
Firefox works fine on both SSL and http.

Here is a simple sample that fails on HTTPS but works on HTTP.

My loader page:
<script src="jquery.js"></script>
<script>
$(document).ready(function(){
$("a#loaderLnk").each(function(intIndex){
$(this).click(function(){
$("#resultsToLoad").load("foo.html").show('fast');
});
});

});


</script>
<a href="javascript:void(0);" id="loaderLnk">Load AJAX</a>
<div id="resultsToLoad"></div>



My ajax page (foo.html):
<div>
<script type="text/javascript">alert("loaded");</script>
</div>

Reply via email to