y2k
y2k

Reputation: 66006

It ok for AJAX to take place over non-SSL?

Say I have an https page can I make ajax calls to non SSL without getting warnings in browsers?

I want to do it for non sensitive data so its faster

Upvotes: 2

Views: 161

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1039190

No, you can't as this violates the same origin policy.

Upvotes: 11

Related Questions