Skip to content

Instantly share code, notes, and snippets.

@bom-d-van
Created December 18, 2012 05:18
Show Gist options
  • Save bom-d-van/4325278 to your computer and use it in GitHub Desktop.
Save bom-d-van/4325278 to your computer and use it in GitHub Desktop.
Half auto accessing lesson for students at Huizhou University.
javascript: (function () { var main = document.getElementsByTagName('frame')[2], selects = main.contentDocument.getElementsByTagName('select'); for (var i = 1; i < selects.length; i++) { selects.item(i).value = Math.random() > 0.5 ? "5(良好)" : "4(优秀)"; } main.contentDocument.getElementById('Button1').click();})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment