// Prevent submission if no radio selected
$("#InsertButton").on("click", function (e) {
e.preventDefault();
e.stopImmediatePropagation();
const selectedRadio = $("input[name='dataProcessingRadio']:checked").val();
if (!selectedRadio) {
alert("Please confirm ....");
return false;
}
if (selectedRadio === "2") {
alert("We respect your decision. However,....");
return false;
}
// If validation passes, manually submit the form
$(this).closest("form").submit();
});
Lucas001
60
Super User 2025 Season 2
Fubar
55
Super User 2025 Season 2
surya narayanan
35