Tagged Questions
86
votes
14answers
21k views
Microsoft CDN for jQuery or Google CDN?
Does it actually matter which CDN you use to link to your jquery file or any javascript file for that matter. Is one potentially faster than the other? What other factors could play a role in which ...
71
votes
17answers
59k views
Why is using Javascript eval function a bad idea?
The eval function is a powerful and easy way to dynamically generate code so what are the caveats?
70
votes
1answer
8k views
How does _gaq.push(['_trackPageLoadTime']) work?
How does the Google Analytics Site Speed feature, _gaq.push(['_trackPageLoadTime']), work? Is there any documentation about how it works?
67
votes
9answers
4k views
When to use Vanilla JavaScript vs. jQuery?
I have noticed while monitoring/attempting to answer common jQuery questions, that there are certain practices using javascript, instead of jQuery, that actually enable you to write less and do ... ...
61
votes
13answers
13k views
Good ways to improve jQuery selector performance?
I'm looking for any way that I can improve the selector performance of a jQuery call. Specifically things like this:
Is $("div.myclass") faster than $(".myclass")
I would think it might be, but I ...
35
votes
7answers
12k views
JavaScript Profiler in IE
Does anyone know a tool for Profiling JavaScript in IE?
List available:
IE8 (Internet Explorer 8 only)
JavaScript Profiler
YUI!
33
votes
3answers
568 views
How did Firefox optimize this loop?
Firefox 9.0.1 surprised me by showing up my Ω(log n) number-padding algorithm with a Ω(n) loop method when n is small. In every other browser I've seen, the loop is slower, even for small values of n. ...
33
votes
8answers
17k views
Which browsers support <script async=“async” />?
On December 1, 2009, Google announced support for asynchronous Google Analytics tracking.
The asynchronous tracking is achieved using the async directive for the <script> tag.
Which browsers ...
32
votes
3answers
1k views
Most appropriate way to get this: $($(“.answer”)[0])
Suppose I want to get the first element amongst all the elements of the class ".answer"
$($(".answer")[0])
I can do the above, but what is the best balance between elegance and speed?
*changed the ...
30
votes
12answers
10k views
How do you performance test JavaScript code?
CPU Cycles, Memory Usage, Execution Time, etc.?
Added: Is there a quantitative way of testing performance in JavaScript besides just perception of how fast the code runs?
26
votes
6answers
3k views
What blocks Ruby, Python to get Javascript V8 speed?
Are there any Ruby / Python features that are blocking implementation of optimizations (e.g. inline caching) V8 engine has?
Python is co-developed by Google guys so it shouldn't be blocked by ...
25
votes
5answers
808 views
Fastest way to sort 32bit signed integer arrays in JavaScript?
EDIT:
So far, the best/only major optimization brought to light is JS typed arrays.
Using a typed array for the normal radix sort's shadow array has yielded the best results. I was also able to ...
23
votes
1answer
257 views
Is $(document).ready necessary if I put all my JavaScript at the bottom of the page? [closed]
Possible Duplicate:
jquery - Is $(document).ready necessary?
Putting the JS just above the </body> tag improves perceived load time because the browser doesn't have to read and parse ...
23
votes
6answers
2k views
JavaScript variables declare outside or inside loop?
In AS3 I believe you should initialise all variables outside loops for increased performance. Is this the case with JavaScript as well? Which is better / faster / best-practice?
var value = 0;
for ...
23
votes
5answers
9k views
What is the best way to profile javascript execution?
Is there a good profiler for javascript? I know that firebug has some support for profiling code. But I want to determine stats on a longer scale.
Imagine you are building a lot of javascript code ...
23
votes
8answers
5k views
Unobtrusive JavaScript: <script> at the top or the bottom of the HTML code?
I've recently read the Yahoo manifesto Best Practices for Speeding Up Your Web Site. They recommend to put the JavaScript inclusion at the bottom of the HTML code when we can.
But where exactly and ...
23
votes
12answers
5k views
When should I use Inline vs. External Javascript?
I would like to know when I should include external scripts or write them inline with the html code, in terms of performance and ease of maintenance.
What is the general practice for this?
...
22
votes
14answers
3k views
Does use of anonymous functions affect performance?
I've been wondering, is there a performance difference between using named functions and anonymous functions in Javascript?
for (var i = 0; i < 1000; ++i) {
myObjects[i].onMyEvent = ...
20
votes
7answers
816 views
Why do people use jQuery for basic operations?
I am a JS programmer and I have been experimenting with jQuery a lot but have run into a couple puzzling aspects.
I feel like people use jQuery for much more than necessary. I really just want to ...
18
votes
6answers
396 views
jQuery - the good parts?
I have embarked on a mission to start using jQuery and JavaScript properly. I'm sad to say that historically I have fallen into the class of developer that makes a lot of really terrible mistakes with ...
18
votes
7answers
549 views
Reduce HTTP requests or not?
A theoretical question:
We all know about the pro's of minifying and combining javascript files in order to reduce HTTP requests to speed up a website. But when popular javascript libraries is used ...
17
votes
4answers
6k views
Scriptmanager Asp.Net Mvc
I'd like to have some of the scriptmanager features in the new Asp.net MVC model
1- Script combining
2- Resolving different paths for external javascipt files
3- Minify and Gzip Compression
Here ...
16
votes
4answers
426 views
JavaScript Performance Long Running Tasks
I noticed a question on here the other day ( Reducing Javascript CPU Usage ) and I was intrigued.
Essentially the guy wanted to encrypt some files character by character. Obviously doing all this in ...
16
votes
3answers
2k views
Is binding events in jQuery very expensive, or very inexpensive?
I just wrote a $().bind('event') function and then got concerned that this kind of a call might be very expensive if jQuery has to run through each element in the DOM to bind this event.
Or maybe, ...
15
votes
1answer
895 views
jQuery memory leak patterns and causes
What are some of the standard issues or coding patterns in jQuery which lead to memory leaks?
I have seen a number of questions related to the ajax() call or jsonp or DOM removal on StackOverflow. ...
15
votes
6answers
291 views
Are closures in javascript recompiled
Let's say we have this code (forget about prototypes for a moment):
function A(){
var foo = 1;
this.method = function(){
return foo;
}
}
var a = new A();
is the inner function recompiled ...
15
votes
5answers
588 views
Measure CPU load of Javascript applications
I need to measure the performance overhead of additional Javascript event bindings (using jQuery live), the overhead would probably increase CPU load and be very hard to notice from execution time ...
15
votes
6answers
11k views
Declaring Multiple Variables in JavaScript
In JavaScript, it is possible to declare multiple variables like this:
var variable1 = "Hello World!";
var variable2 = "Testing...";
var variable3 = 42;
...or like this:
var variable1 = "Hello ...
14
votes
3answers
151 views
Speed of comparing to null vs undefined in JavaScript
I have just run a very simple JavaScript performance test (don't ask why). The test declares a variable, but doesn't assign anything to it:
var x;
It then compares the speed of comparing the value ...
14
votes
6answers
891 views
Should github be used as a CDN for javascript libraries?
Serving javascript libraries from a CDN instead of your own server comes with tremendous advantages. Less work for your server, possibility for the CDN to have a copy closer to the user than your ...
14
votes
3answers
619 views
Why don't I just build the whole web app in Javascript and Javascript HTML Templates?
I'm getting to the point on an app where I need to start caching things, and it got me thinking...
In some parts of the app, I render table rows (jqGrid, slickgrid, etc.) or fancy div rows (like in ...
14
votes
6answers
314 views
What's the best way to determine at runtime if a browser is too slow to gracefully handle complex JavaScript/CSS?
I'm toying with the idea of progressively enabling/disabling JavaScript (and CSS) effects on a page - depending on how fast/slow the browser seems to be.
I'm specifically thinking about low-powered ...
14
votes
7answers
4k views
How to profile and and get Javascript performance
I have a few scripts that use jQuery, and I think I have a memory leak in one of them.
How one could profile and find what parts of the scripts that I have are using the most memory/CPU?
Thanks
14
votes
6answers
7k views
Mouseover/hover effect slow on IE8
I have noticed a weird performance thing in IE8 when using mouseover events on a table with many rows (100 in this example). I have tried a lot of different approaches but I can't seem to find any way ...
14
votes
3answers
5k views
Javascript (jQuery) performance measurement and best practices (not load time)
I'll say right off the bat that this question is NOT about load times; I know about YSlow, the Firebug profiler, and whatever best practices and tools googlage reveals about page component load times.
...
14
votes
5answers
4k views
Is “Put Scripts at the Bottom” Correct?
In the Best Practices to improve web site Performance http://developer.yahoo.com/performance/rules.html, Steve Souders mentioned one rule "Move Scripts to the Bottom". It's a little confusing. ...
13
votes
4answers
324 views
Boolean vs Int in Javascript
I always assumed that booleans were more efficient than ints at storing an on/off value - considering that's their reason for existence. I recently decided to check if this is true with the help of ...
13
votes
6answers
263 views
What can I do to decrease load times of HTML pages?
Note: This is meant to be a community wiki post
To try and make user experience the best possible, what can I do to make the loading of my HTML pages more efficient?
13
votes
7answers
695 views
Improving Javascript Load Times - Concatenation vs Many + Cache
I'm wondering which of the following is going to result in better performance for a page which loads a large amount of javascript (jQuery + jQuery UI + various other javascript files). I have gone ...
13
votes
2answers
272 views
What optimizations do modern JavaScript engines perform?
By now, most mainstream browsers have started integrating optimizing JIT compilers to their JavaScript interpreters/virtual machines. That's good for everyone. Now, I'd be hard-pressed to know exactly ...
13
votes
11answers
5k views
Does Silverlight have a performance advantage over JavaScript?
At a recent discussion on Silverlight the advantage of speed was brought up. The argument for Silverlight was that it performed better in the browser than Javascript because it is compiled (and ...
12
votes
4answers
436 views
Why is this Javascript much *slower* than its jQuery equivalent?
I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later):
$('#filter').keyup( function() {
...
12
votes
5answers
156 views
Firefox JavaScript arithmetics performance oddity
Please run this test on firefox.
http://jsperf.com/static-arithmetic
How would you explain the results?
This
b = a + 5*5;
b = a + 6/2;
b = a + 7+1;
executes much faster than
b = a + 25;
b = a + ...
12
votes
4answers
224 views
Are long jQuery chains bad?
I've been using jQuery a long time and I've been writing a slideshow plugin for my work and I (not 100% consciously) wrote probably 75% it in a single chain. It's fully commented and i specify each ...
12
votes
6answers
428 views
Why is accessing dimensions of the image so expensive in JavaScript on IE8?
I have to process loads of images. First, I need to check if the size of the image is greater than 50x60 and appropriately increasing the counter of bad images.
The problem I have is that the speed ...
12
votes
3answers
354 views
Disable JavaScript function based on the user's computer's performance
My website has a jQuery script (from Shadow animation jQuery plugin) which constantly changes the colour of box shadow of various <div>s on the home page.
The animation is not essential, but ...
11
votes
3answers
152 views
Javascript performance: How to check what is slowing down the page?
I have a page which is very slow, not in loading, but in terms of the responsiveness of typing into the form fields on the page.
There is no ajax on the page - this is nothing to do with network ...
11
votes
7answers
220 views
Detecting when Javascript is performing poorly
I'm working on a webapp in jquery that, on older machines or machines without much resources, may perform poorly. To get around this I'd like to make a degraded version that disables some of the ...
11
votes
3answers
694 views
efficient method to replace multiple words in text
Using JavaScript I need to efficiently remove ~10000 keywords from a ~100000 word document, of which ~1000 will be keywords. What approach would you suggest?
Would a massive regular expression be ...
11
votes
6answers
7k views
How to quickly clear a Javascript Object?
With a Javascript Array, I can reset it to an empty state with a single assignment:
array.length = 0;
This makes the Array "appear" empty and ready to reuse, and as far as I understand is a single ...