I'm trying to run a javascript window.print()
from chrome. It prints the first time but then subsequent calls (within a minute of the first call) fail. The chrome log states "Ignoring too frequent calls to print()."
window.print();
setInterval(function() {
window.print();
}, 5000);
Can't find a way around this issue. Any ideas?
Thanks in advance