I want to have a script that tests if an input contains a question mark, and if it does, changes some css. How can I do this?

link|improve this question

76% accept rate
feedback

2 Answers

up vote 5 down vote accepted

Using jQuery:

if ($("#myinputbox").val().indexOf("?") != -1) {

    $("#someotherelement").css("color", "red");
    $(this).css("color", "green");

} else {

    alert("Doesn't contain a question mark");

}

Not using jQuery:

if (document.getElementById('myinputbox').value.indexOf("?") != -1) {

    document.getElementById("someotherelement").className += " NewClass";
    this.className += " NewClass";

} else {

    alert("Doesn't contain a question mark");

}

UPDATE : Validating onKeyDown()

$("#myinputbox").keydown(function() {

    if ($(this).val().indexOf("?") != -1) {

        $(this).css("color", "green");

    } else {

        $(this).css("color", "red");

    }

});
link|improve this answer
How could I do this realtime though, so as a user is typing in the input box? – hubrid Mar 27 '11 at 17:35
Just hook the onChange event. I'm updating my response now. – Jesse Bunch Mar 27 '11 at 17:38
kk thanks for helping – hubrid Mar 27 '11 at 18:32
hmm, it is actually not working... – hubrid Mar 27 '11 at 18:41
Do you get any JS errors? Does anything actually happen? – Jesse Bunch Mar 27 '11 at 18:41
show 8 more comments
feedback

Validating with keydown() works, however the keydown event is firing before the character is actually entered in the textbox. Therefore once you put in a '?', you won't get the color change until the next key is pressed, firing the keydown(). If you change it to use keyup() it will fire right after the '?' is let go, changing the color immediately after it has been typed. You can test this out by alerting the value like Jesse suggested, the first letter you type in the text box will actually show an empty alert. Changing it to keyup() and using the alert test, you will see what was just typed in the textbox.

link|improve this answer
yeah that's what I found out too. thanks! – hubrid Mar 28 '11 at 4:04
feedback

Your Answer

 
or
required, but never shown

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