active-link.js

ajax.js

Source:
Provides Ajax page updating via jQuery $.ajax. Ajax is a method of making a request via JavaScript while viewing an HTML page. The request returns an array of commands encoded in JSON, which is then executed to make any changes that are necessary to the page. Drupal uses this file to enhance form elements with `#ajax['url']` and `#ajax['wrapper']` properties. If set, this file will automatically be included to provide Ajax capabilities.

announce.js

Source:
Adds an HTML element and method to trigger audio UAs to read system messages. Use Drupal.announce to indicate to screen reader users that an element on the page has changed state. For instance, if clicking a link loads 10 more items into a list, one might announce the change like this.

Example

$('#search-list')
  .on('itemInsert', function (event, data) {
    // Insert the new items.
    $(data.container.el).append(data.items.el);
    // Announce the change to the page contents.
    Drupal.announce(Drupal.t('@count items added to @container',
      {'@count': data.items.length, '@container': data.container.title}
    ));
  });

autocomplete.js

batch.js

checkbox.js

debounce.js

Source:
Adapted from underscore.js with the addition Drupal namespace.

details.js

Source:
Additional functionality for HTML5 details elements.

details-aria.js

details-summarized-content.js

displace.js

Source:
Manages elements that can offset the size of the viewport. Measures and reports viewport offset dimensions from elements like the toolbar that can potentially displace the positioning of other elements.

drupal.js

drupalSettingsLoader.js

entity-form.js

form.js

jquery.tabbable.shim.js

machine-name.js

message.js

position.js

Source:
See:
A modified version of jQuery UI position. Per jQuery UI's public domain license, it is permissible to run modified versions of their code. This file offers the same functionality as what is provided by jQuery UI position, but refactored to meet Drupal coding standards, and restructured so it extends jQuery core instead of jQuery UI. This is provided to support pre-existing code that expects the jQuery position API.

progress.js

states.js

tabbingmanager.js

tabledrag.js

tableheader.js

tableresponsive.js

tableselect.js

time-diff.js

timezone.js

touchevents-test.js

vertical-tabs.js