I\'m writing a custom method for a jQuery plugin:
jQuery.validator.addMethod(\"alphanumeric\", function(value, element) { return this.optional(elemen
$("input:text").filter(function() { return this.value.match(/^[a-zA-Z0-9]+/); })