I ran a test case with this because i was doing this the long way. Come to find out, if you happen to already know the labels for="" and input’s id, then a switch case is quicker.
$('form :input').bind({
focus: function () {
var id = $(this).attr('id').toString();
var add = $("label[for='" + this.id + "']").addClass('labelfocus');
switch (id) {
case 'title':add;break;
case 'description':add;break;
case 'resource':add;break;
case 'tag':add;break;
case 'theme':add;break;
case 'language':add;break;
}
},
blur: function () {
$('label').removeClass('labelfocus');
}
});
jsPerf Benchmark Test Case (Slightly modified with triggering events). I do however prefer this method due to the less code and easy to use, especially if you have dynamic forms.
pleasee give me this example :(
This will come in handy, will use a subtle rgba colour background on selection – cheers :-)
I ran a test case with this because i was doing this the long way. Come to find out, if you happen to already know the labels
for=""
and input’s id, then a switch case is quicker.jsPerf Benchmark Test Case (Slightly modified with triggering events). I do however prefer this method due to the less code and easy to use, especially if you have dynamic forms.
You can style it with just CSS if you put the label after the input
Here is very good example It realised like small jQuery plugin and can be customized as you wish.
I want same class on label when there is value on input, How to do that