Skip to content

Instantly share code, notes, and snippets.

@lambdaX
Last active August 29, 2015 14:05
Test-embed-gists
function isValidURL(s) {
var testRegex = /^https?:\/\/(?:[a-z\-]+\.)+[a-z]{2,6}(?:\/[^\/#?]+)+\.(?:jpe?g|gif|png)$/;
return testRegex.test(s);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment