Lines Matching refs:load
64 parameter of the `css()`, `js()`, or `load()` methods will receive the
72 @property {Boolean} [options.async=false] Whether or not to load scripts
121 milliseconds) for detecting CSS load completion in browsers that don't
122 support the `load` event on `<link>` nodes. This isn't used for
135 ignored there, but may be useful when using the `load()` function. If
205 optional callback passed to `css()`, `load()`, or `js()`; and `transaction`,
307 Y.log('foo.css failed to load!');
319 Y.log('one or more files failed to load!');
341 of URLs and/or request objects to load.
386 Y.log('foo.js failed to load!');
398 Y.log('one or more files failed to load!');
420 of URLs and/or request objects to load.
443 Use this method when you want to load both CSS and JavaScript in a single
458 Y.Get.load(['foo.css', 'bar.js', 'baz.css'], function (err) {
460 Y.log('one or more files failed to load!');
466 @method load
468 of URLs and/or request objects to load.
484 load: function (urls, options, callback) {
521 // feasible to load test files on every pageview just to perform a
530 // link node fails to load. This is currently true for Firefox 9+
537 // DOM 0 "onload" event, but not "load". All versions of IE fire
721 returned as needed by Y.Get's `css()`, `js()`, and `load()` methods.
750 `Get.load()`, and will be `undefined` if no data object was specified.
1054 self._progress('Failed to load ' + req.url, req);
1095 // gives us a reliable way to determine CSS load completion that
1126 // If this browser doesn't fire an event when CSS fails to load,
1147 // for anything to load, then we're done!
1201 // http://www.zachleat.com/web/2010/07/29/load-css-dynamically/