I'm trying to replace the characters <
and >
onblur with a space when someone enters it into my form.
I've got this at the moment
$(".tbAddress").blur(function()
{
$("<").replaceWith(" ");
$(">").replaceWith(" ");
}
Any help would be much appreciated
thanks
Jamie