Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a textarea inside a form:

<textearea id="message"></textarea>

While typing, whenever a user types the character # inside the textarea, I want to trigger a function for every character typed afterwards and till the user hits enter or space bar.

How is this possible using jQuery or plain JS ?

share|improve this question
2  
What have you tried? – Ohgodwhy Jan 12 at 0:15

3 Answers

up vote 2 down vote accepted

You can use this :

var myCallback = function () {
    //put your code here
}

(function (callback) {
    var jMessage = $('#message'),
        callbackCallable = false,
        keycodeEnter = 13,
        keycodeSpace = 32;


    jMessage.keyup(function (e) {
        var lastLetter = jMessage.val().slice(-1);
        if (lastLetter === '#') {
            callbackCallable = true;
        } else if (e.keyCode === keycodeEnter || e.keyCode === keycodeSpace) {
            callbackCallable = false;
        } else if (callbackCallable) {
            callback();
        }
    });
}(myCallback));
share|improve this answer
That is nice, I like it :) – kidwon Jan 12 at 0:47

If you want to detect only typing you can listen for a key pressed event.

var anyHitYet = false;
jQuery('#massage').keydown(function (event) {

    if (anyHitYet) return;

    var key = event.keyCode;
    if (key === 51) {
        //call your function here
    } else if (key === 13 || key === 32) {
        anyHitYet = true;
    }
});

Basically if it's 51 then # is hit so call your function if space or enter are hit your #-when-pressed-function won't be executed until you make anyHitYet=false again

Somebody might paste something though so then it is a different story

share|improve this answer
And yep you might want to read that stackoverflow.com/faq#questions – kidwon Jan 12 at 0:27

Not sure if the above answers do what the OP wants. I think a second or third # should be monitored aswell, till a space or return ends monitoring.

// have a flag somewhere and initialize it to FALSE
var doMonitor = FALSE; 

$('#message').keydown(function(event){

    // trigger monitoring after # was tipped
    // (only once till space or return reset)
    if(event.keyCode == 51 && !doMonitor){
       doMonitor = TRUE;
    }
    else if(event.keyCode == 32 || event.keyCode == 13)
       doMonitor = FALSE;
    else if(doMonitor){
        // do whatever needs to be done
    }
});

You may also add an attribute to your #message textarea and remove it (or change its value) instead of using a variable.

// for setting an attribute
.attr( attributeName, value )

// for removing it
.removeattr( attributeName )

look here http://api.jquery.com/removeAttr/ and here http://api.jquery.com/attr/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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