Skip to content

Instantly share code, notes, and snippets.

@jayphelps
Created December 6, 2014 00:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jayphelps/6c6a69a3e4982e8dfc1c to your computer and use it in GitHub Desktop.
Save jayphelps/6c6a69a3e4982e8dfc1c to your computer and use it in GitHub Desktop.
var isValidURL = (function () {
var input = document.createElement('input');
input.type = 'url';
function isValidURL(url) {
input.value = url;
return input.validity.valid;
}
return isValidURL;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment