Hi,
I am using the cloud based version and have a List with comment and would like to change the title of the text area from "Please enter your comment here:" to "Please provide details to support your case".
We have had the system two days, so can some kind soul explain step by step please? We would prefer not to use jQuery to do this but if this is the only way to do this so be it.
If you want this for a single question, you can add this script to the source of the question:
Code:
<script type="text/javascript" charset="utf-8">
$(document).on('ready pjax:scriptcomplete',function(){
$('#question{QID} .text-item label.control-label').text('Please provide details to support your case:');
});
</script>
Cheers,
Tony Partner Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Sorry for resurrecting such an old thread, but I'd like to ask you for help. If I add the function in the source all I get is a mangled question. Screenshots attached. What am I doing wrong here?