(function ($) { $(document).ready(function () { selectSocialProvider(); }); hideAndShowElement($('#lr-custom-interface-enable'), '.lr_custom_interface'); $('#lr-custom-interface-enable').change(function () { hideAndShowElement($(this), '.lr_custom_interface'); }); })(jQuery); function selectSocialProvider() { var socialProvider = ''; jQuery('#select-provider').html(socialProvider); } function hideAndShowElement(element, inputBoxName) { if (element.is(':checked')) { jQuery(inputBoxName).hide(); } else { jQuery(inputBoxName).show(); } }