jQuery 1.8.3 | YUI 3.8.0 | AUI 3.0.0 |
---|---|---|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script src="https://somedomain.com/path/to/plugin.js"></script> <script src="https://somedomain.com/path/to/anotherplugin.js"></script> <script> $(document).ready( function() { // Do stuff with the $ object here $.foo.bar() } ); </script> Loading Method: Statically loaded (by default).
Scope: The
Plugins: To go beyond base library functionality, jQuery has the concept of "plugins" which are loaded in via additional
|
<script src="http://yui.yahooapis.com/3.8.0/build/yui/yui-min.js"></script> <script> YUI().use( 'module1', 'module2', 'module3', function (Y) { // Do stuff with the Y object here Y.foo.bar() } ); </script> Loading Method: Dynamically loaded (by default).
Scope: The
Modules: Functionality in the YUI library is provided by "modules", which are split between core (officially supported) and gallery (user contributed). Simply adding YUI().use( 'node', 'io', 'event', 'animation', function (Y) { // example code here } ); If any additional modules are needed, they'll be specified in the "notes" section to the example. |
<script src="https://cdn.alloyui.com/3.0.0/aui/aui-min.js"></script> <link href="https://cdn.alloyui.com/3.0.0/aui-css/css/bootstrap.min.css" rel="stylesheet"></link> <script> // Same as YUI... </script> |
jQuery 1.8.3 | YUI 3.8.0 | AUI 3.0.0 | Notes |
---|---|---|---|
$('div.foo:first'); |
Y.one('div.foo'); |
Return the first element which matches the selector; in this case, the first
jQuery and YUI use similar selector syntax, but jQuery has added extensions, mainly convenience pseudo-classes, to the Sizzle CSS3-compliant selector engine. YUI comes with three different selector engines; see the section on selectors. YUI and AUI use the same selector engine. |
|
var foo = $('div.foo:first'); foo.some_method(); |
var foo = Y.one('div.foo'); if (foo) { foo.some_method(); } |
jQuery selector methods always return a list object with
|
|
$('div.foo'); |
Y.all('div.foo'); |
Select all |
|
var foo = $('div.foo'); if (foo.length) { ... } |
var foo = Y.all('div.foo'); if (foo.size()) { ... } |
If no elements match the selector, jQuery will return an empty list
Both are truthy even if they contain no elements, so use |
|
.find('p.foo:first'); .find('p.foo'); |
.one('p.foo'); .all('p.foo'); |
Finds |
|
$('<div/>'); |
Y.Node.create('<div/>'); |
Create a new |
|
.html('foo'); .text('foo'); .val('foo'); .html(); .text(); .val(); |
.setHTML('foo'); .set('text', 'foo'); .set('value', 'foo'); .getHTML(); .set(); .set(); |
// In addition to YUI... .html('foo'); .text('foo'); .val('foo'); .html(); .text(); .val(); |
AUI overrides YUI's jQuery and AUI overload getters and setters in the same methods. If a value is passed, these work as setters. |
.attr('foo'); .attr('foo', 'bar'); |
.getAttribute('foo'); .setAttribute('foo', 'bar'); |
// In addition to YUI... .attr('foo'); .attr('foo', 'bar'); |
Generic HTML attribute getters and setters. If only the name is passed, it works as a getter. |
$.trim('foo'); |
Y.Lang.trim('foo'); |
Strips leading and trailing whitespace. |
|
parent.append('<div/>'); |
Create a new |
||
child.appendTo(parent); |
Append child to parent, and return
|
||
parent = $('<div/>'); $('<p>foo<p>') .click(fn) .appendTo(parent); |
parent = Y.Node.create('<div/>'); Y.Node.create('<p>foo</p>') .appendTo(parent) .on('click', fn); |
Creates a new
Note that YUI's |
|
// Remove #foo from its parent and // detaches events and jQuery data. $('#foo').remove(); // Removes #foo from #container. $('#container').remove('#foo'); |
// Removes #foo from its parent, but doesn't // detach events or YUI plugins. Y.one('#foo').remove(); // Removes #foo and detaches events and plugins. Y.one('#foo').remove(true); // Removes #foo from #container. Y.one('#container').removeChild(Y.one('#foo')); |
jQuery's
YUI's equivalent is |
|
.empty(); |
Remove and destroy all of the nodes within the given node and also unregisters any events associated with the elements being destroyed.
|
||
.siblings(); .siblings(selector); |
.siblings(); .siblings(selector); .siblings(fn); |
In addition to an optional selector string, YUI also supports passing a function to filter the returned siblings. |
|
.next(); .next(selector); |
.next(); .next(selector); .next(fn); |
Same considerations as |
|
.prev(); .prev(selector); |
.previous(); .previous(selector); .previous(fn); |
Same considerations as |
|
.parent(); |
.get('parentNode'); |
Return the parent node of the given node. |
|
.children(); |
.get('children'); |
Return all the element children of the given node. |
|
.closest(selector); |
.ancestor(selector); .ancestor(fn); |
Return the first ancestor that matches the given selector. YUI supports using a fn instead of a selector to find an ancestor. |
|
$.contains(node, descendant); |
.contains(descendant); |
Check if a node contains a certain descendant. |
|
.show(); .hide(); |
Make DOM nodes appear/disappear. |
||
.fadeIn(); .fadeOut(); |
.show(true); .hide(true); |
YUI's
|
|
$.parseJSON('{"name":"Douglas"}'); |
Y.JSON.parse('{"name":"Douglas"}'); |
Convert a JSON string into an object.
YUI requires the |
|
No jQuery equivalent. |
Y.JSON.stringify({name: "Douglas"}); |
Convert an object into a JSON string. Requires YUI's |
|
$.proxy(fn, context); |
Y.bind(fn, context); |
Create a new function that will call the supplied function in a particular context. |
|
.data(key); .data(key, value); |
.getData(key); .setData(key, value); |
Store data associated with a DOM element without modifying the DOM. |
|
.removeData(); .removeData(key); |
.clearData(); .clearData(key); |
Remove the associated data. |
jQuery 1.8.3 | YUI 3.8.0 | AUI 3.0.0 | Notes |
---|---|---|---|
$('#foo').click(fn); $('#foo').focus(fn); $('#foo').blur(fn); $('#foo').mouseout(fn).mouseover(fn); // jQuery 1.4.2 and later allows you to // register events when creating the element $('<p/>', { blur: fn, className: 'bar', click: fn, focus: fn, text: 'foo' } ); //Alternatively, you can use the bind() method $('#foo').bind('click', fn); |
Y.one('#foo').on('click', fn); Y.one('#foo').on('focus', fn); Y.one('#foo').on('blur', fn); Y.one('#foo').on('mouseout', fn); Y.one('#foo').on('mouseover', fn); // Alternatively, YUI allows you to attach multiple // subscribers with a single call. Y.one('#foo').on( { blur: fn, click: fn, focus: fn, mouseout: fn, mouseover: fn } ); // Or attach a single subscriber to multiple events. Y.one('#foo').on(['blur', 'click', 'focus'], fn); |
YUI's |
|
$('#container').delegate('#target', 'click', fn); |
Y.one('#container').delegate('click', fn, '#target'); |
Event listener will bind to #container and only fire the callback fn when a event's target is #target. |
|
$(document).on('click', '#target', fn); |
Y.one(Y.config.doc).delegate('click', fn, '#target'); |
jQuery's
|
|
$('#foo').trigger('click'); |
Y.one('#foo').simulate('click'); |
Simulate a click event.
Requires YUI's |
jQuery 1.8.3 | YUI 3.8.0 | AUI 3.0.0 | Notes |
---|---|---|---|
$('*'); |
Y.all('*'); |
Select all nodes. Note the default selector engine for YUI is CSS 2.1.
Examples in this section require YUI's |
|
$(':animated'); |
No YUI equivalent. |
No AUI equivalent. |
Psuedo class to select all elements currently being animated. |
$(':button'); |
Y.all('input[type=button], button'); |
// In addition to YUI... Y.all(':button'); |
Extension. In both jQuery and YUI you can run multiple selectors separated by commas. |
$(':checkbox'); |
Y.all('input[type=checkbox]'); |
// In addition to YUI... Y.all(':checkbox'); |
Extension. |
$(':checked'); |
Y.all(':checked'); |
CSS3 selector. |
|
$('parent > child'); |
Y.all('parent > child'); |
Immediate child selector (child must be one level below parent). |
|
$('parent child'); |
Y.all('parent child'); |
Descendant selector (child can be at any level below parent). |
|
$('div.class'); |
Y.all('div.class'); |
CSS class selector. |
|
$(":contains('foo')"); |
Y.all(':contains(foo)'); |
Extension to select all elements whose text matches ' jQuery can take quotes or not. YUI requires no quotes.
The text matching is plain string comparison, not glob or regexp. Be careful with this one as it will return all matching ancestors, eg [ |
|
$(':disabled'); $(':enabled'); |
Y.all(':disabled'); Y.all(':enabled'); |
CSS3 selector
|
|
$(':empty'); |
Y.all(':empty'); |
CSS3 selector. Selects all elements that have no child nodes (excluding text nodes). |
|
$(':parent'); |
Y.all(':not(:empty)'); |
// In addition to YUI... Y.all(':parent'); |
Inverse of jQuery's version is an extension. YUI's version is using a CSS3 selector. |
$('div:eq(n)'); |
Y.all('div').item(n); |
Extension. Select nth element.
jQuery's selector will return an empty list
YUI's |
|
$('div:even'); $('div:odd'); |
Y.all('div').even(); Y.all('div').odd(); |
Extension. Select all even or odd elements. Note that elements are 0-indexed and the 0th element is considered even.
See YUI's |
|
$(':file'); |
Y.all('input[type=file]'); |
// In addition to YUI... Y.all(':file'); |
Extension. Find input elements whose |
$('div:first-child'); |
Y.all('div:first-child'); |
CSS3 selector. Select the first child element of |
|
$('div:first); |
Y.one('div'); |
The |
|
$('div:gt(n)'); $('div:lt(n)'); // Or $('div').slice(n + 1); $('div').slice(0,n); |
Y.all('div').slice(n + 1); Y.all('div').slice(0, n); |
Extension. | |
$('div:has(p)'); |
var nodes = []; Y.all('div').each( function (node) { if (node.one('p')) { nodes.push(node); } } ); nodes = Y.all(nodes); |
Extension. Select elements which contain at least one element that matches the specified selector.
Select all |
|
$(':header'); |
Y.all('h1,h2,h3,h4,h5,h6'); |
// In addition to YUI... Y.all(':header'); |
Extension. Select all heading elements. (Rarely used) |
$('div:hidden'); |
var hidden = []; Y.all('div').each( function(node) { if ((node.get('offsetWidth') === 0 && node.get('offsetHeight') === 0) || node.get('display') === 'none') { hidden.push(node); } } ); hidden = Y.all(hidden); |
// In addition to YUI... Y.all(':hidden'); |
Extension.
In jQuery > 1.3.2
YUI's equivalent would essentially be a port of the jQuery code that implements |
$('#id'); |
Y.all('#id'); |
CSS3 selector. Identity selector. |
|
$('input:image'); |
Y.all('input[type=image]'); |
// In addition to YUI... Y.all(':image'); |
Extension. Select all inputs of type image. |
$(':input'); |
Y.all('button,input,select,textarea'); |
// In addition to YUI... Y.all(':input'); |
Extension. Select all user-editable form elements. |
$(':last-child'); |
Y.all(':last-child'); |
CSS3 selector. |
|
$('div:last'); |
var last, len = list.size(), list = Y.all('div'); if (len) { last = list.item(len - 1); } |
Extension. Select the last element matched by the selector. |
|
$('input[type=checkbox][checked]'); |
Y.all('input[type=checkbox][checked]'); |
// In addition to YUI... Y.all(':checkbox:checked'); |
CSS3 selector. Multiple attribute selector. |
$(':not(div)'); |
Y.all(':not(div)'); |
CSS3. Negation selector. |
|
$(':password'); |
Y.all('input[type=password]'); |
// In addition to YUI... Y.all(':password'); |
Extension. |
$(':radio'); |
Y.all('input[type=radio]'); |
// In addition to YUI... Y.all(':radio'); |
Extension. |
$(':reset'); |
Y.all('input[type=reset]'); |
// In addition to YUI... Y.all(':reset'); |
Extension. |
$(':selected'); |
Y.all('option[selected]'); |
// In addition to YUI... Y.all(':selected'); |
Extension. |
$(':submit'); |
Y.all('input[type=submit]'); |
// In addition to YUI... Y.all(':submit'); |
Extension. |
$(':text'); |
Y.all('input[type=text]'); |
// In addition to YUI... Y.all(':text'); |
Extension. (Does not select |
jQuery 1.8.3 | YUI 3.8.0 | AUI 3.0.0 | Notes |
---|---|---|---|
$('#foo').animate( { height: 100, opacity: 0.5, width: 100 }, { duration: 600, easing: 'swing' } ); |
var a = new Y.Anim( { duration: 0.6, easing: Y.Easing.bounceOut, node: '#foo', to: { height: 100, opacity: 0.5, width: 100 } } ); a.run(); // Or use transition Y.one('#foo').transition( { duration: 0.6, easing: 'ease-out', height: 100, opacity: 0.5, width: 100 } ); |
The basic syntax and capabilities of both animation libraries are very similar.
jQuery has convenience methods for effects like
YUI has several easing algorithms built-in, and offers additional tools such as animations over Bezier curves. Requires YUI's
Use YUI's |
|
$('#foo').fadeOut(); // Or $('#foo').hide(600); |
Y.one('#foo').hide(true); |
jQuery's
YUI equivalents are
jQuery effects tend to default to 200 or 600ms while YUI's show/hide transitions default to |
The fundamental unit of jQuery is a JavaScript Array containing 0 or more DOM elements. These Array objects have extra .on()
, .click()
, .map()
, etc methods attached to them in addition to the built-in list operations like .slice()
and .concat()
.
The fundamental units in YUI are Node objects, which wrap DOM elements, and NodeLists which are collections of Nodes. NodeLists are not Arrays and are not natively iterable.
jQuery 1.8.3 | YUI 3.8.0 | AUI 3.0.0 | Notes |
---|---|---|---|
$('.foo').array_method(args); |
Y.all('.foo').array_method(args); |
Any Array operation that you can perform on a jQuery list can be translated to YUI in this form. YUI NodeList objects are not native Arrays, but do provide wrapper functions for the most common array methods as of YUI 3.3.0. |
|
$('div').slice(x, y); |
Y.all('div').slice(x, y); |
Return the xth to the yth |
|
$('div').add('p'); |
Y.all('div').concat(Y.all('p')); |
Add nodes that match the specified selector. |
|
$('.foo').each( function() { $(this).some_method(); } ); |
Y.all('.foo').each( function() { this.some_method(); } ); |
YUI's |
|
$('.foo').filter('.bar'); |
Y.all('.foo').filter('.bar'); |
The
jQuery's |
|
$('.foo').filter( function (idx) { return this.property === 'value'; } ); |
Y.all('.foo').filter( function (node) { return node.get('property') === 'value'; } ); |
Classic functional programming filter function. Given a list of elements, run the function on each and return a list of those which evaluated true. |
|
$('.foo').map( function(idx, el) { return some_function(el); } ); |
var mapped = []; Y.all('.foo').each( function (node) { mapped.push(some_function(node)); } ); mapped = Y.all(mapped); |
jQuery's |
jQuery 1.8.3 | YUI 3.8.0 | AUI 3.0.0 | Notes |
---|---|---|---|
$.ajax( { data: data, success: successFn, url: url } ); |
Y.io( url, { data: data, on: { success: successFn } } ); |
jQuery.ajax() has some interesting options for async, context, and filtering.
YUI.io has extra options for failure mode callbacks, headers, cross-frame i/o, etc. Requires YUI's |
|
No equivalent. |
Y.io( url, { data: data, on: { success: successFn }, xdr: { use: 'flash' } } ); |
Cross-domain requests via a Flash helper. |
|
$('#message').load('/ajax/test.html'); |
Y.one('#message').load('/ajax/test.html'); Y.one('#message').load('/ajax/test.html', '#foo'); |
Load the content of a given URL and replace the contents of
YUI's |
|
$.getJSON(url, successFn); |
Y.io(url, { on: { success: successFn } } ); |
A remote request for a JSON file. Same-origin policy is enforced. There is no convenience method for this in YUI. |
|
$.getJSON( "/some/jsonpURL.json?callback=?", successFn ); |
Y.jsonp( "/some/jsonpURL.json?callback={callback}", successFn ); |
JSONP requests. Same-origin policy is not enforced. Requires YUI's |
jQuery 1.8.3 | YUI 3.8.0 | AUI 3.0.0 | Notes |
---|---|---|---|
.addClass('foo'); .removeClass('foo'); .toggleClass('foo'); .hasClass('foo'); |
CSS class name manipulation. |
||
.removeClass('foo').addClass('bar'); |
.replaceClass('foo', 'bar'); |
Replace node's CSS class |
|
.css('display', 'block'); |
.setStyle('display', 'block'); |
Set a single CSS property. |
|
.css( { display: 'block', height: 100, width: 100 } ); |
.setStyles( { display: 'block', height: 100, width: 100 } ); |
Set multiple CSS properties. |
|
.css('display'); |
.getStyle('display'); |
Get the current value for a CSS property. |
|
.height(); .width(); |
.getComputedStyle('height'); .getComputedStyle('width'); |
// In addition to YUI... get('offsetWidth') - getPadding('lr') - getBorderWidth('lr') |
Computed height / width. (Excludes padding and borders) AUI getBorderWidth has values of t(top), l(left), r(right), b(bottom). |
.innerHeight(); .innerWidth(); |
.get('clientHeight'); .get('clientWidth'); |
// In addition to YUI... get('offsetWidth') - getBorderWidth('lr') |
Includes padding but not border. AUI getBorderWidth has values of t(top), l(left), r(right), b(bottom). |
.outerHeight(); .outerWidth(); |
.get('offsetHeight'); .get('offsetWidth'); |
Includes padding and border. |
|
.offset(); // { // height: 1011, // left: 123, // top: 456, // width: 789 // } |
.getXY(); // [123, 456] |
Get the computed x,y coordinates relative to the document. jQuery also returns the size of the node. |
|
.offset( { left: 123, top: 456 } ); |
.setXY(123, 456); |
// In addition to YUI... // Center an item on the page .center(); |
Set the x,y coordinates relative to the document. |
jQuery 1.8.3 | YUI 3.8.0 | AUI 3.0.0 | Notes |
---|---|---|---|
$.each([1, 2, 3], fn(index, value)); $.each({ key: value }, fn(key, value)); |
Y.Array.each([1, 2, 3], fn(value, index)) Y.Object.each({ key: value }, fn(value, key)); |
Iterate through an array or object. In jQuery, the first parameter is the index of the value in the array. YUI is compatible with the Array forEach method so the first parameter the callback receives when iterating through an array is the value. |
|
$.inArray(value, array); |
Y.Array.indexOf(array, value); |
Returns the index of the searched value in the specified array. |
|
$.type(obj); |
Y.Lang.type(obj); |
Returns a string representing the type of the specified object. YUI and jQuery results are compatible (see jQuery's). |
|
$.isPlainObject(obj); |
Y.Lang.isObject(obj); Y.Lang.isObject(obj, true); |
YUI's |
|
$.isArray(obj); $.isFunction(obj); |
Y.Lang.isArray(obj); Y.Lang.isFunction(obj); Y.Lang.isString(obj); Y.Lang.isBoolean(obj); Y.Lang.isDate(obj); Y.Lang.isNumber(obj); Y.Lang.isNull(obj); Y.Lang.isUndefined(obj); Y.Lang.isValue(obj); |
YUI also has some extra type checking functions. In particular, |
|
$.isEmptyObject(obj); |
Y.Object.isEmpty(obj); |
Check if the given object does not have any properties. |
|
$.makeArray(obj); |
Y.Array(obj); |
Make an array-like object, for instance the return value of |
|
$.now(); |
Y.Lang.now(); |
Return the current time in milliseconds. |
The jQuery - YUI 3 Rosetta Stone was originally created by Carlos Bueno. It's now maintained by Ryan Grove and Paul Irish.
The jQuery - YUI 3 - AlloyUI Rosetta Stone is a fork and is maintained by The AlloyUI Team.
For YUI, please file bugs and recommend changes on GitHub. You're also more than welcome to fork the GitHub repo and send pull requests.
For AUI, please send Pull Requests on GitHub.