Tagged Questions
The javascript-performance tag has no wiki summary.
4
votes
5answers
1k views
Javascript Performance - Dom Reflow - Google Article
Could someone prove to me that the advice given here (copied below) regarding removing dom elements before altering them and then re-inserting them is ever quicker.
By prove, I would like to see ...
3
votes
1answer
158 views
Javascript Performance: Multiple script blocks Vs single bigger block
I have observed a weird behavior on IE8(not seen on FF 3.5).
I created 2 sample web pages with only some JS in it.
Page1: 3 JS blocks ( tags) with very small inline JS in them.
Page2: Same JS as ...
3
votes
8answers
279 views
What is the performance impact of having jquery functions not used?
I posted another question on a very similar topic, but turned out to be a little subjective. I am able to divided the question in two questions, one that I will explain below:
In the following Code:
...
3
votes
2answers
250 views
Javascript Performance Improvements
I'm currently fighting with Internet Explorer's (IE7) javascript performance issues, and struggling to find good information on improving performance, whether it be for a specific browser or in ...
3
votes
6answers
698 views
How well does JavaScript scale?
I was working on this carousel thing, using the iCarousel. It works pretty nicely with a few images, using MooTools. However when I added 70 pictures (around 30k each) it stopped working so nicely. ...
2
votes
2answers
116 views
JavaScript inner-functions and Performance
What is the impact on running-time and memory defining a clousre vs. global-scope function?
function a(){
//functions (option A)
}
//functions(option B)
I understand that Option A has the ...
2
votes
3answers
254 views
javascript object's - private methods: which way is better
(function () {
function User() {
//some properties
}
//private fn 1
User.prototype._aPrivateFn = function () {
//private function defined just like a public function,
...
2
votes
1answer
317 views
How to remove all console.log statements from your minified or combined javascript file
Iam using Visual studio
Iam having javascript codes scattered in different files.
Currently iam using below link's compressor
http://yuicompressor.codeplex.com/
this generates output as ...
2
votes
4answers
2k views
Javascript Running slow in IE - What does “JScript - window script block” mean?
Javascript is running extremely slow on IE on some pages in our site.
Profiling seems to show that the following methods are taking the most time:
Method count inclusive ...
2
votes
5answers
297 views
JQuery performance with many plugins?
I've been using JQuery for a while, but primarily without plugins - I'm now looking to do a project which could take advantage of a bunch of plugins - Are there any performance penalty to using a lot ...
2
votes
5answers
1k views
Speed test between Javascript frameworks reliable?
This is pretty interesting, this site runs a speed test and compares all of these;
PureDom
jQuery 1.2.6
jQuery 1.3.2
Prototype 1.6.0.3
MooTools 1.2.2
qooxdoo 0.8.2
Dojo 1.2.3
Dojo 1.3.1
YUI 2.7.0
...
1
vote
5answers
87 views
Javascript clears a variable after there is no further reference it
It is said, javascript clears a variable from memory after its being referenced last.
just for the sake of this question i created a JS file for DEMO with only one variable;
//file start
...
1
vote
5answers
1k views
HTML5: Canvas performs too slow on lower end computers
My problem is that my javascript/canvas performs very slowly on lower end computers (Even though they can run even more challenging canvas scripts smoothly).
I'm trying to do a simple animation ...
1
vote
2answers
400 views
How to check and test how much memory a javascript app is leaking
iam looking for some tools or ways to detect memory leaks, slow methods in my javascript app.
1
vote
1answer
224 views
Coupling/chaining multiple asynchronously loaded JS scripts (JavaScript)
Problem description:
I'm working on a project to take an existing JavaScript script and modify it to support being loaded asynchronously. If you don't know about asynchronous or lazy loading scripts ...
1
vote
4answers
243 views
is my jQuery script performing bad?
I build a web tool for a photo lab to start print orders to be processed by the printers.
On older Mac's I am experiencing bad performance with my scripts.
I was wondering whether there are some low ...
0
votes
1answer
37 views
Running Jquery empty on a container with many children causing “unresponsive script” popup
I have a container with about 6000 children all in all. Running Jquery.empty on this would take about 2 seconds on one of the faster browsers and on IE7/8 emptying it will quite often notify the user ...
0
votes
5answers
58 views
What is better? toggling visibility or manipulating text
I have a div with heading text like this:
<div class="vehicleCntr" id="vehicles">
<div class="header">
<h3 id="name"> Trucks </H3>
</div>
The text in ...
0
votes
2answers
44 views
Issue with modular pattern approach
I just went to http://jsperf.com/prototype-vs-closures/2 prototype vs closures performance test. Actually I use Modular pattern a lot which internally uses clousre AFAIK. Now as per test it says ...
0
votes
2answers
88 views
Javascript Split Performance
I'm sure you've all seen code like this in JS:
var args = 'now later today tomorrow'.split(' ')
Anyone know why that's faster than this:
args = ['now', 'later', 'today', 'tomorrow']
(I don't ...
0
votes
1answer
113 views
Explain this JsPerf.com result
I ran a test on this website
http://jsperf.com/
I want some one to explain
What does green and pink signifies
What is ops per second
what is 95,814,583
what is +- 1.95% is
whats does 'fastest' ...
0
votes
1answer
91 views
which is better javascript practice?
Case A
(function(){
//this is to access this a property "PublicItem" from outside this closure
window.PublicItem=function(){
//codes
}
//internal variables
var ...
0
votes
0answers
107 views
IE6 JScript version and IETester
I use IETester and compared to other IE testing tools, it renders perfectly.
I've come across an issue with very slow JavaScript performance in IE6 (running natively in a VMWare XP SP2 VM), but ...
0
votes
2answers
195 views
Why is JQuery slower on Chrome 10 than on Chrome 8?
According to the JQuery 1.5 release notes, the speed performance charts show that Chrome 8 is faster for the mentioned JQuery methods children(), prev(), next().
I wonder how that would be, since ...
0
votes
1answer
63 views
javascript : I can not declare variables with var prefix in context of prototype
Hi I'm giving my sample code as :
function A(){
var varD = 89
}
A.prototype = {
varA : 90
var varC = 91
}
I want to use this object A in my 3-4 scripts .All scripts are inter-related ...
0
votes
1answer
94 views
Is this memory leak?? In javascript
(function () {
//create object with two initail properties
var obj = {};
obj.a = { a1: 1, a2: 2 };
obj.b = { b1: 1, b2: 2 };
//create a new property 'c' and refer property 'a' to ...
0
votes
1answer
170 views
javascript closures: how they start leaking memory
many programmers believe javascript closures starts leaking memory.
I want to see some examples where this happens.
I dont want to see closure being added as events to dom elements and removing dom ...
0
votes
7answers
777 views
JavaScript code improvement
I am not a huge JavaScript performance guru. Simply wondering, can I make the following code anymore compact? Not as in packing or compressing it, but in the way it's written.
(function() {
var ...
0
votes
6answers
256 views
Improving performance of jquery/javascript webpage logic
EDIT: I am also after advice if there is a better way to go about this??
I have a webpage that displays a timesheet for the user to fill out.
The timesheet is for a month so it has as many rows in ...
0
votes
2answers
964 views
JQuery - Grid Row Highlighting Best Practise
I am looking for the best performing script for providing a hover state to rows within a grid.
90% of users have ie6 clients therefore I cant rely on css :hover
The grid is a standard table, some ...