Hello!
Say I have a simple Form with only Dropdown and no Submit button, and I want this Form to be sent when a user selects a value from Dropdown list.
Could you give an example how this can be done?
Thank you.
Say I have a simple Form with only Dropdown and no Submit button, and I want this Form to be sent when a user selects a value from Dropdown list.
Could you give an example how this can be done?
Thank you.
With jQuery
jQuery(document).on('change', 'select[name="nameofyourselectfield"]', function() { jQuery('.ui.form').form('submit'); } );
This topic is locked and no more replies can be posted.