tags:

views:

72

answers:

3

i am posting to ssl server with jquery. will my any ajax posts be protected?

+5  A: 

Yes, just like normal https pages

S.Mark
+4  A: 

Assuming you are accessing HTTPS server, yes.

Zepplock
+1  A: 

Yes, Javascript obeys the same origin security policy. If the html is served via SSL than the communication through JS must be through SSL as well. See the Wikipedia article: Same origin policy

Danny