I need to auto populate a jqxinput box on a form form with information passed via a URL. How would this be done? A regular HTML input box would have an id and a name to send data to via URL ex., http://www.google.com?q=searchterm, with q being the name of the input box. I am new to jqxWidgets, however, I didn’t see a name attribute for the jqxinput widget. Example code below:
<input id=”iAddress1″ type=”text” class=”text-input jqx-widget-content jqx-widget-content-purple jqx-input jqx-input-purple jqx-widget jqx-widget-purple jqx-rc-all jqx-rc-all-purple” style=”width:250px;” role=”textbox” aria-autocomplete=”both” aria-disabled=”false” aria-readonly=”false” aria-multiline=”false” placeholder=”” aria-expanded=”false”>
How would I populate this box via data sent in a URL?
Thanks.