Skip to content

Instantly share code, notes, and snippets.

@rnaffer
Last active February 22, 2017 15:48
Show Gist options
  • Save rnaffer/c6f7e40b22c2b6f03db3778b42279dd1 to your computer and use it in GitHub Desktop.
Save rnaffer/c6f7e40b22c2b6f03db3778b42279dd1 to your computer and use it in GitHub Desktop.
Usefull Javascript functions
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
function validateEmail(email) {
var re = /^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/;
return re.test(email);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment