This may seem like an easy question, but I am trying to run one function , multiple times, with different values on each run and with a time delay between runs. I can do it sloppily with setTimeout, but was hoping there would be an easier way.
Basically, what I am trying to do is this:
onClick="function1("value1");function1("value2");function1("value3");"
with a delay in between.
Any suggestions would be greatly appreciated.