radio checked auto next click

PHOTO EMBED

Tue Apr 09 2024 07:47:41 GMT+0000 (Coordinated Universal Time)

Saved by @divyasoni23 #jquery

$(document).ready(function ($) {
	$('body .description-form').on(
		'change',
		'.gchoice input[type="radio"]',
		function () {
			if ($(this).is(':checked')) {
				$(this)
					.closest(
						'.gform_page:nth-child(1),.gform_page:nth-child(2),.gform_page:nth-child(3)',
					)
					.find('.gform_next_button')
					.click();
			}
		},
	);
});
content_copyCOPY