(function($) { $(document).ready(function() { /** ----------------------------------------------- * TABLE OF CONTENTS * * Transform a #table-of-contents div to a nested list */ if($("#table-of-contents").length > 0) { var toc = '
'; $('#table-of-contents').prepend(toc); } /** --------------------------------------------- * LANGAUGE SELECTER * * Hide the change button and do it onclick */ $("#Form_LanguageForm .Actions").hide(); $("#Form_LanguageForm select").change(function() { $("#Form_LanguageForm").submit(); }); }); })(jQuery);