Skip to content

Instantly share code, notes, and snippets.

@yi-jiayu
Created April 4, 2017 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yi-jiayu/0657616aeca123fd18b40a9c9dd87ef9 to your computer and use it in GitHub Desktop.
Save yi-jiayu/0657616aeca123fd18b40a9c9dd87ef9 to your computer and use it in GitHub Desktop.
TEAMMATES quick feedback script
var boxes = document.querySelectorAll('.numScaleAnswerBox');
var textBoxes = document.querySelectorAll('.mce-content-body');
[].forEach.call(boxes, function(box) {
box.value = 5;
});
[].forEach.call(textBoxes, function(box) {
box.textContent = 'Great';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment