Submit Form on Dropdown change?

How to automatically submit a form when a dropdown selection changes.

Overview

The form lacks a submit button and requires automatic submission upon user selection.
Use a script to detect the dropdown change event and trigger the form submission.

Answered
Connectivity v6
2D 2D77rus 03 Sep, 2019
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.
he healyhatman 03 Sep, 2019
Answer
1 Likes
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.