Skip to content

Instantly share code, notes, and snippets.

@bernos
Created April 15, 2011 00:51
Show Gist options
  • Select an option

  • Save bernos/920915 to your computer and use it in GitHub Desktop.

Select an option

Save bernos/920915 to your computer and use it in GitHub Desktop.
Validates a number is a valid australian mobile
function(value) {
return String(value).match(/^04[0-9]{8}$/) != null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment