Firstly, I'm using a jQuery plugin called inlineFieldLabel to put labels inside my textareas/text inputs.
I have a multi-part form. The idea is to fill the fields in the first part of the form if you decide to go back.
Now, it seems like I can either disable my jQuery plugin if any fields have been previously filled, or I can somehow work around this.
I tried putting something between <textarea>
and </textarea>
, as well as putting a value
attribute into my text input, but it seems that the plugin is blocking that from working.
Is there a way I can simply insert text into the text fields, using jQuery perhaps, in the same manner as a keyboard input (which would cause the plugin to function correctly)?