Files
pi-control/public_html/js/network_configuration.method_select.js
Gregor Schulte b303dd00d6 Init Repo
2021-06-17 12:24:22 +02:00

7 lines
222 B
JavaScript

jQuery(document).on('change', 'select[name=method]', function()
{
if (jQuery('select[name=method] option:selected').index() == 1)
jQuery('.hidden-method').show('fast');
else
jQuery('.hidden-method').hide('fast');
});