Possible Duplicate:
When a page delivers secure and non-secure items over https, are the secure items compromised?
If you load jquery from the google ajax site like this:
<script type="text/javascript" src="http//ajax.googleapis.com/ajax/libs/jquery/1.x.x/jquery.min.js"></script>
on an https page, in some browsers it will show that the page is not secure.
I have since fixed it to load like this:
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
And it works fine.
My question is, could the site have been compromised by a hacker because of this improper loading of a non-https script?