index.js 308 B

1234567891011
  1. function customStart()
  2. {
  3. //define your javascript here
  4. //jquery is available - except index.js
  5. //you can load extra scripts with $.getScript http://api.jquery.com/jQuery.getScript/
  6. function setRandomName() {
  7. document.getElementById("padname").value = randomPadName();
  8. }
  9. setRandomName();
  10. }