Note: You are currently viewing documentation for Moodle 3.0. Up-to-date documentation for the latest stable version of Moodle may be available here: Frank Ralf/jQuery.

User:Frank Ralf/jQuery

From MoodleDocs
< Frank Ralf
Revision as of 15:59, 6 November 2011 by Frank Ralf (talk | contribs) (Created page with "Some examples and proof of concept for using jQuery for enhancing Moodle usability. == Collapsible course list == <syntaxhighlight lang="javascript"> jQuery('.section h3').wrap...")

Some examples and proof of concept for using jQuery for enhancing Moodle usability.

Collapsible course list

jQuery('.section h3').wrapInner('<a href="#" />')
  .click( function(event) {
    event.preventDefault();
    jQuery(this).parent().find('ul.section').toggle();
})

jQuery('ul.section').hide();