Submit form on radio button click - Submit form and perform other actions on radio click

前端 未结 4 1680
心在旅途
心在旅途 2021-02-20 16:34

I have a jQuery question concerning Radio buttons and forms.

I have tabbed content setup with 5 tabs setup with a form in each tab.

Each form consists of 5 radio

4条回答
  •  余生分开走
    2021-02-20 16:36

    Try This!!

     $('input[type=radio]').on('change', function() {
    $('input[type=submit]').click();});
    

提交回复
热议问题