jQuery UI in Drupal
Published by jromero on Fri, 02/11/2011 - 14:45
Drupal 7 includes jQuery UI so that you may create instant user interfaces right out of the gate. Drupal's method of implementing jQuery UI is really cool in that only the components required are included which adds to the efficiency of your site. For example, if you needed an accordion only the Core JS, Accordion JS and accompanying CSS files are included. This all happens automatically when you request the jQuery UI library. Just one reminder, jQuery is running in no conflict mode which means that any jQuery code should be written as "jQuery(selector)" not "$(selector)". Here are a few examples...