We used custom code to set up placeholder text in open end text boxes to prompt the user to provide detailed feedback etc. Is there a way to change the placeholder text’s font color? We are not sure what attribute/class it is to alter that, if it’s available at all.
var placeholderText = 'Use this section for additional feedback.';
jQuery('#' + qid + ' input type="text"], #' + qid + ' textarea').attr('placeholder',placeholderText);
});