└── evaluation.js /evaluation.js: -------------------------------------------------------------------------------- 1 | 2 | // open your web browser Console (ctrl+shift+i) 3 | // copy & paste this code 4 | // choose evaluation rating from 1 to 5 5 | // default stars number is 5 6 | // write your comment for all field 7 | // default comment is empty 8 | // press Enter to Run script 9 | // click Finish Button to Submit your evaluation 10 | 11 | 12 | var stars = 5; 13 | var default_comment = ""; 14 | $('*[id*=ContentPlaceHolder1_UcCourseEval1_]:hidden').each(function() { 15 | if( !$(this).val() ) { 16 | $(this).val(stars); 17 | $(this).parent().closest('div').siblings('textarea').val(default_comment).text(default_comment).html(default_comment); 18 | } 19 | 20 | 21 | }); --------------------------------------------------------------------------------