vote up 1 vote down star

I want to know if the page is being accessed via http or https using JavaScript. Is there some sort of isSecure() method, or should I just parse it out of the URL somehow?

flag

75% accept rate

3 Answers

vote up 3 vote down check

location.protocol should do it for you.

(as in:

if (location.protocol === 'https:') {
    // page is secure
}

)

link|flag
vote up 3 vote down

You should be able to check document.location.protocol to see if it's "http:" or "https:"

link|flag
vote up 1 vote down

While location.protocol should do it for you as Peter Stone mentioned, but you shouldn't rely on Javascript for any true security, etc.

I think the value with be "https:" for location.protocol if you are on SSL.

link|flag
Yeah, if you need SSL for security, check server-side (Apache sets the HTTPS environment variable if SSL is in use). If you just need to know which it is (i.e., use secure Google Analytics to avoid "partial security" warnings), this will be okay. – Peter Stone Jan 5 '09 at 23:13
I just need to know which it is to avoid the "non-secure elements warnings in IE". It's a stopgap measure until our next release. – braveterry Jan 5 '09 at 23:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.