I want my script to pretend like it is actually typing, so that the rest of my scripts that listen for changes work. Just trying to do some automation here.
Anyway,
How would one get javascript / jquery to prentend to type, say a space?
I tried this:
typeBox.val(" ");
typeBox.trigger('keypress');
But it doesn't work?