I get this error “uncaught exception: Syntax error, unrecognized expression: label”
when trying to access label elements in a DIV.
Is this a bug or i am doing something wrong ?
$('#app_loader :input').attr('disabled', false);
$('#app_loader: label').css('color','#000000');
Try this:
Your current code does not take labels or inputs inside the div with id #app_loader. That “:” does not belong there. Although “:input” is correct, I recommend you use the regular css-way because it’s faster. If you really require all form elements you can keep the “:” for the input, but for the label it’s wrong.