<!DOCTYPE html>
<html>
<head><script type="text/javascript">
function onPaste(eve) {
try {
var txt = e.clipboardData.getData('text/plain');
alert(txt);
} catch (err) {
}
} </script> </head><body>
<textarea cols=60 name="inputUsaaNum" onpaste="onpaste(event);"></textarea></body></html>
please help to validate the clipboard data from text area, i need to identify the whaether it has any spacial character and also i want to delimit the values with help of carriage return('\r'), please help????