Is there a way to extend the val() function in jQuery.
Basically, what I want to do is set a class variable if there is content being dynamically entered into an input.
Whick normally would be something like
var thisVal = 'Hello World';
$('#myInput').val(thisVal).addClass('dark');
It would just be nice to tell the val() function to always add the class 'dark' to an input if there is a value, and to remove it if it is empty.
Possible?