This inquiry is focused on the Captive Network Assistant.
I attempted to utilize plain JavaScript,
<form action="">
<select name="test" onchange="this.form.submit()">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</form>
And also experimented with jQuery, in case there might be a compatibility issue with the browser.
$('select').on('change', function () {
$(this).closest('form').submit();
});
Unfortunately, neither of these methods yielded successful results, and troubleshooting Captive Portal issues can be quite challenging. Has a viable solution been identified?