up vote 3 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

location.protocol should do it for you.

(as in:

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

)

link|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
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
feedback

Your Answer

 
or
required, but never shown

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