Reputation: 2092
How would I use the keyfilter plugin and allow everything except < and >
http://code.google.com/p/jquery-keyfilter/
Upvotes: 0
Views: 503
Nevermind, I got it $('#field').keyfilter(/[^<^>]/);
$('#field').keyfilter(/[^<^>]/);
Upvotes: 1