I’m currently working on a Java web application, and have dynamically generated input boxes on the jsp page. I’m trying to use the setupElementMasks() function from http://www.xaprb.com/html-input-mask/html-form-input-mask.js to mask input. My input boxes are generated dynamically so would I have to use jquery’s .load function to load the desired function?
I’m currently working on a Java web application, and have dynamically generated input boxes
Share
I think you’re looking for the
.live()function.http://api.jquery.com/live/
Description: Attach a handler to the event for all elements which match the current selector, now and in the future.