Lines Matching refs:load
66 parameter of the `css()`, `js()`, or `load()` methods will receive the
74 @property {Boolean} [options.async=false] Whether or not to load scripts
123 milliseconds) for detecting CSS load completion in browsers that don't
124 support the `load` event on `<link>` nodes. This isn't used for
137 ignored there, but may be useful when using the `load()` function. If
207 optional callback passed to `css()`, `load()`, or `js()`; and `transaction`,
309 Y.log('foo.css failed to load!');
321 Y.log('one or more files failed to load!');
343 of URLs and/or request objects to load.
388 Y.log('foo.js failed to load!');
400 Y.log('one or more files failed to load!');
422 of URLs and/or request objects to load.
445 Use this method when you want to load both CSS and JavaScript in a single
460 Y.Get.load(['foo.css', 'bar.js', 'baz.css'], function (err) {
462 Y.log('one or more files failed to load!');
468 @method load
470 of URLs and/or request objects to load.
486 load: function (urls, options, callback) {
523 // feasible to load test files on every pageview just to perform a
532 // link node fails to load. This is currently true for Firefox 9+
539 // DOM 0 "onload" event, but not "load". All versions of IE fire
723 returned as needed by Y.Get's `css()`, `js()`, and `load()` methods.
752 `Get.load()`, and will be `undefined` if no data object was specified.
1056 self._progress('Failed to load ' + req.url, req);
1097 // gives us a reliable way to determine CSS load completion that
1128 // If this browser doesn't fire an event when CSS fails to load,
1149 // for anything to load, then we're done!
1203 // http://www.zachleat.com/web/2010/07/29/load-css-dynamically/