Leave a Comment
Отложенная загрузка скрипта в jQuery
1 2 3 4 5 6 7 8 9 10 11 12 |
function cachedScript (url, options) { // allow user to set any option except for dataType, cache, and url options = $.extend(options || {}, { dataType: "script", cache: true, url: url }); // Use $.ajax() since it is more flexible than $.getScript // Return the jqXHR object so we can chain callbacks return jQuery.ajax(options); } |
(чтобы скрипт кэшировался)
http://jqapi.com/#p=jQuery.getScript
Similar Posts
- None Found
LEAVE A COMMENT
Для отправки комментария вам необходимо авторизоваться.