By pressing the "arrow key down", add a class
Hi,
This code should achieve that if I press the "arrow key down" inside an input field with a certain class, an additional class get added to all inputs which have the same class:
- $('.text-input__field--floated').keypress(function(event) {
- var key = event.which;
- if (key == 40) // Arrow key down code
- {
- $('.text-input__field--floated').addClass('dirty');
- $('.text-input__field--floated').prev('label').addClass('dirty');
- }
- });
But it doesn't work. What is wrong?
I created a pen here:
Thanks