Last active
September 21, 2015 21:21
-
-
Save codexp/91bfc7998b04e22f69e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.getElementById('response').onkeyup = function (e) { if (13 == e.keyCode) { document.getElementById('response').value = document.getElementById('response').value.replace(',', '.'); document.getElementById('checkanswer').click();} } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://lizardpoint.com/math
online math practice
submit input with enter key
simply
copy
andpaste
into browser's console when course is already started (open withF12
).you have to reapply it every time the page reloads.
apply via click
if you need to do it frequently, you may also speed it up by creating a bookmark in your bookmark bar.
copy
the javascript code from abovecreate
a new bookmark in your bookmark barjavascript:
intoURL:
input field of your bookmark (including colon) andpaste
the code straight behind the colonsave
ityou may apply it by clicking on the bookmark when already in practice.