Converting URL to HTTPS via Javascript -


i want convert current url https version javascript. how can done ?

ex: http://www.abc.com --> https://www.abc.com

window.location = window.location.href.replace(/^http:/, 'https:'); 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -