Forum Discussion
JustinLambakis-
3 years agoCommunity Member
Saving Lightbox text-field data programmatically
Hey developers and js coders. We have a course where we have leveraged the lightbox functionality in a fairly deep way. Learners use it to "take notes" and capture data along the way—there are 10+...
JoshDean-9a3016
3 years agoCommunity Member
Have you observed the same behavior if you assign the textbox field to a variable? The reason I ask is what if you could use a javascript "onkeyup" function that would run each time a user presses a key but only actually assign the variable after a delay. So if they were actively typing it would call the keypress function but only assign it to the variable when there is more than so many milliseconds between key presses. https://stackoverflow.com/questions/1909441/how-to-delay-the-keyup-handler-until-the-user-stops-typing?rq=1
Hope that helps.