The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
268 views

Defer loading of Facebook Like Button Script

Google pagespeed is complaining about my facebook like button script. How can I defer the script? 45KiB of JavaScript is parsed during initial page load. Defer parsing JavaScript to reduce ...
0
votes
0answers
18 views

DeferredLoading crashes connection

I can't understand why I get the following error in chrome when I try to access my WCF Rest url with DeferredLoadingEnabled = true when accessing my SQL Server database via my Linq-to-SQL DataContext? ...
0
votes
2answers
95 views

How to defer loading of a Norton Secure Site Seal?

I am displaying a Norton Secure Site Seal in a website and I would like to improve the page speed deferring the loading of the seal script. All the tries I've done failed and I found only this page ...
1
vote
2answers
54 views

Deferred scripts and DOM

I need to run script only when DOM is ready as script does some rewriting of certain attributes of certain tags. Currently I use document.addEventListener on DOMContentLoaded or if not available ...
5
votes
1answer
440 views

Speed up page load by deferring images

I am creating a page which will contain a lot of large sized images, so Inaturally I want to make sure the page loads without too much trouble. I read this article here ...
0
votes
1answer
118 views

Defer JS loading - insert to Head or Body

I wanted to know what is the most recommended way in terms of optimization, caching and page load speed. Should I dynamically insert the JS files in the BODY or HEAD of my website document when using ...
0
votes
2answers
423 views

Defer loading in JavaScript, Jquery 'ready()' runs before JQuery is loaded

I am loading two JS files, one with many plugins, including Jquery. The 'ready()' JQuery function is in the second file. Code: function downloadJSAtOnload() { var element = ...
7
votes
2answers
303 views

Interaction between jQuery .ready() and <script defer>

I am trying to figure out a problem with some code I have inherited. I have an HTML page with <script type="text/javascript" src="file1.js" defer="defer"></script> <script ...
-1
votes
1answer
235 views

Cant get script to defer

I have the following script which generates about 4000 lines of code on my website: <script language="javascript" type="text/javascript"> <!-- var makemods2 = new Array; <?php $i = 0; ...
0
votes
1answer
117 views

is it possible to dynamically include scripts via .gwt.xml?

how can i take advantage of GWT's deferred binding mechanism for script resources (e.g. CSS, JavaScript)? the <define-property ... /> and <set-property ... /> ( when used in ...
0
votes
1answer
226 views

What are DeferredLoading and LazyLoading in Microsoft Entity Framework?

Could you explain what are DeferredLoading and LazyLoading in Microsoft Entity Framework (and in general)? Is it the same think? What are the differencies? Do you have a good link about the subject?
2
votes
1answer
515 views

How to add defer tag automatically in all javascript?

I'm using wordpress and i have many plugins which using javascript file. I want to add "defer" tag in all javascript including inline script. I don't wanna edit each file and add it manually. So ...
0
votes
2answers
236 views

defer loading of JS libraries AND several document ready functions

i managed to defer loading of JS libraries and also one document ready function, following this post Possible to defer loading of jQuery? However, I have multiple document ready functions that are ...
0
votes
1answer
585 views

DeferredLoadingEnabled - how does it work?

I've several tables including the 'combining' in many-to-many relationship. I want to make now Insert operation. I heard about DeferredLoadingEnabled in linq2sql and I know it's connected with this ...
3
votes
1answer
474 views

Dealing with Arrays of Deferred Objects

Since using $.Deferred I've run into this scenario a couple times: I have a list of values each of which yields a Deferred Object in some way and I want to execute a callback once all of the Deferred ...
4
votes
2answers
1k views

GWT: deferred loading of external JS resources

I have a widget depending on some external JS files, and I'd like to lazy load all these external resources. I've already used code splitting to lazy load the GWT code that concerns the widget, but ...
1
vote
1answer
1k views

Loading Images on-demand (or; disable loading of hidden images)

I have a slider-like widget which is basically, a div of sub-divs containing some page content (together with images). Initially, all sub-divs are hidden except the main one. My problem is that all ...
5
votes
4answers
1k views

Social Plugins (Fb, Twitter, Google) adding 3 seconds of load time to my site. Defer them?

I know you can use the defer="" html attribute to defer javascript files, but it's only supported in IE (lol) and that will only defer javascript files, I need to defer the entire plugin from loading. ...
3
votes
2answers
452 views

Javascript non-blocking scripts, why don't simply put all scripts before </body> tag?

In order to avoid javascript to block webpage rendering, can't we just put all all our JS files/code to be loaded/executed simply before the closing </body> tag? All JS files and code would be ...
15
votes
1answer
5k views

Understanding jQuery Deferred.pipe()

I am trying to implement the jQuery Deferred.pipe() method for the following scenario: Add a user in DB via $.ajax() Get response whether user was added correctly or not. If successfully added, get ...
0
votes
2answers
478 views

Deferred loading of RadGrid and strange error in firefox

I have some strange issues with loading of RadGrid. What I'm trying to accomplish is deferred loading user control from web service. This technique is explained on this link: ...
1
vote
1answer
435 views

Defer Eclipse Treeviewer loading by DeferredTreeContentManager

I understand there is an approach to defer TreeViewer loading by using DeferredTreeContentManager, learnt from this useful tutorial. However, this mechanism requires the model to implement ...
0
votes
1answer
424 views

Lazy/deferred loading of a CollectionViewSource?

When you create a CollectionViewSource in the Resources section, is the set Source loaded when the resources are initalized (i.e. when the Resources holder is inited) or when data is bound? Is there ...
6
votes
1answer
817 views

Forcing a checkbox bound to a DataSource to update when it has not been viewed yet

Here is a test framework to show what I am doing: create a new project add a tabbed control on tab 1 put a button on tab 2 put a check box paste this code for its code (use default names for ...
1
vote
2answers
1k views

LINQ to SQL Deferred Loading

DBML I have the following entities in my dbml: (made up for an example) Book <- Media -> AuthorsForMedia <- Author The arrows are the relationships in my dbml. A book is a type of media, ...