You can use literal RegExp creation, however you don't want to assign the keyup handler in the focus event
$(document).ready(function (e) {
var keyupHandler = function () {
var self = $(this),
reg = /^([A-Za-z])$/,
check = self.val(),
matches = reg.test(check) || check.match(reg),
border = matches ? '1px solid #CCC' : '1px solid #b20000';
self.css('border', border)
};
$('#step1 #fName').keyup(keyupHandler).focus();
});
Working demo: http://jsfiddle.net/X3ZDQ/
Also, your current regex only allows one character in the input, If that is not your desired effect, change your regex to /^([A-Za-z]+)$/
UPDATE:
The problem inherent in "on any alphanumeric" is two-fold.
First, your regex only allows alphas, not numerics.
Second, if you are only validating a single character in your keyup event, your validation will generate false positives.
Examples over time:
a //a is valid
an //n is valid
an1 //1 is not valid, so border changes to red
an1n //n is valid, so border changes back to grey
Final value is an1n, which is not valid because it contains a 1, but your validation routine passes it because the last character typed was an n, which is valid.
You are much better off validating the entire string in the input. To do that, change your regex to include a + quantifier after your character class:
/^([A-Za-z]+)$/
Updated fiddle: http://jsfiddle.net/X3ZDQ/1/