vote up -2 vote down star

Hello! I would like to ask somebody how i can determine what key was pressed in a textarea.... need to write a little javascript code.. a user type in a textarea and i need to write it in a while he writing so the keydown, keypress event handle this functionality, also need to change the text color if a user typed a "watched" word (or the word what he wrote contains the "watched" word/words ) in the textarea.. any idea how i can handle it ??

till now did the text is appear in the <div>, but with this i have a problem.. can't check if the text is in the "watched"... the document.getElementById('IDOFTHETEXTAREATAG'); on keypress is not really works because i got back the whole text inside of the textarea.....

So how i can do it ? any ideas ??? "(Pref. in Mozilla FireFox)

flag
Why not show what you tried. – James Black Nov 6 at 13:40
1  
You should try to read your own question. I don't even think you will be able to understand it. – Josh Stodola Nov 6 at 16:57

5 Answers

vote up 1 vote down

Well, if you were using jQuery, you could do this given that the id of your textarea was 'ta':

$('#ta').keypress(function (evt) {
  var $myTextArea = $(this); // encapsulates the textarea in the jQuery object
  var fullText = $myTextArea.val(); // here is the full text of the textarea
  if (/* do your matching on the full text here */) {
    $myTextArea.css('color', 'red'); // changes the textarea font color to red
  }
};
link|flag
vote up 0 vote down

I suggest you use the 'onkeyup' event.

$( element ).keyup( function( evt ) {
    var keyPressed = evt.keyCode;
    //...
});
link|flag
vote up 0 vote down

I am not sure what your problem is, the problem/question is described too vague. But I think that you confused what all the key* events do. Here's a clear overview:

  • onkeydown will be fired when the key is pressed, but BEFORE the character is appended to the value.
  • onkeypress will be fired when the key is pressed, but AFTER the character is appended to the value.
  • onkeyup will be fired when the key is released and that's always AFTER the character is appended to the value.

Maybe your actual problem was accessing the character by textarea's value instead of the keyevent.

Hope this helps.

link|flag
vote up 0 vote down

I have this made like this (plain JS, no JQuery):

function keyDown(e) { 
    var evt=(e)?e:(window.event)?window.event:null; 
    if(evt){ 
       if (window.event.srcElement.tagName != 'TEXTAREA') {
    	var key=(evt.charCode)?evt.charCode: ((evt.keyCode)?evt.keyCode:((evt.which)?evt.which:0));
        }
     }
} 
document.onkeydown=keyDown;

This script is in head tag. I am catching this in all textarea tags. Modify it for your purpose.

link|flag
Maybe you should use a little less trenary operators (or whatever they are called in javascript) They make the code very unreadable. – Pim Jager Nov 7 at 9:59
You are wright... This code is old and written only once :) Copy&paste from then on - I don't fix it if it is not broken :P Otherwise I don't do that... – Trick Nov 7 at 13:09
vote up 0 vote down

here is the code what i tried.....

the js


var text;
var value;
var myArray;
var found = new Boolean(false);

function getWatchedWords()
{
    myArray = new Array();
    text = document.getElementById('watched');
    value = text.value;
    myArray = value.split(" ");
    for (var i = 0;i ";
        }
}


function checkTypeing()
{
    var text2 = document.getElementById('typeing');
    var value2 = text2.value;
    var last = new Array();
    last = value2.split(" ");
    if (last[last.length-1] == "")
    {
       if(found)
       {
         document.getElementById('writetyped').innerHTML += "";
         document.getElementById('writetyped').innerHTML += " ";
       }
       else
         document.getElementById('writetyped').innerHTML += " ";  


}
else
   check(last[last.length-1]);

}

function check(string) { for (var i = 0; i < myArray.length; i++) { var occur = string.match(myArray[i]); if(occur != null && occur.length > 0) { if (!found) { found = true; document.getElementById('writetyped').innerHTML += ""; } else { found = true; } } else {

 }

}

if(found) { document.getElementById('writetyped').innerHTML += string; } else { document.getElementById('writetyped').innerHTML += string; } }

The Html



TextEditor

Watched words:

Text:

Update: can`t post the html code because the site try to integrate it in the site

So i read it again what i wrote... yeah you are right.... i know it is not an excuse but my mother tongue is not the english... So i tried to clear it again.... Facts... 2 textarea in the first textarea need to write the words or chars what you want to "watch" in the typing text in the second textarea need to type text, so when i type text, under the textarea need to write what is in the textarea (real time) and highlight the whole word if contains the watched words or chars... For ex: watched: text locker p text: lockerroom

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.