Skip to content

Instantly share code, notes, and snippets.

@jshaw
Created May 23, 2012 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jshaw/2777771 to your computer and use it in GitHub Desktop.
Save jshaw/2777771 to your computer and use it in GitHub Desktop.
Checks to see if there's http at the start of a url, and makes sure that it is included if missing.
var str="http://someurl.ca/";
str = str.search("http://") == -1 ? "http://" + str : str;
document.write(str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment