I want to limit a textarea field to Caps (A-Z), numbers (0-9) and this symbold (&). Is this possible with jQuery?
this is my js:
$('#textarea').keyup(function(e){
var keyed = $(this).val().replace(/[\n]/g,'<br />');
$('#output').html(keyed);
});
Any help please? thanks