I have question about javascript. If you know anything, then
please let me know.
<textarea cols=20 rows=20>
for(int i = 0; i<4; i++)
{
out.println(i);
}
</textarea>
When I run this example I get 1 2 3 in my Textarea.
I want to do is select one digit in one time. For example If I select
1 then I should get alert says You got 1. same thing with 2 and 3. I
am not sure If I did good job explaining it. Any help would be
appricated.