OK, so let\'s say I have this:
$(function() {
$(\'#good_evening\').keyup(function () {
switch($(this).val()) {
case \'Test\':
// DO STUFF HER
switch($(this).val().toLowerCase()) {
case 'test':
// DO STUFF HERE
break;
}
Why not lowercase the value, and check against lowercase inside your switch statement?
$(function() {
$('#good_evening').keyup(function () {
switch($(this).val().toLowerCase()) {
case 'test':
// DO STUFF HERE
break;
}
});
});
Convert it to upper case. I believe this is how it is done, correct me if I am wrong... (dont -1 me =D )
$(function() {
$('#good_evening').keyup(function () {
switch($(this).val().toUpperCase()) {
case 'TEST':
// DO STUFF HERE
break;
}
});
});