Tagged Questions
0
votes
0answers
20 views
how to over come the stop script error in the browser when rendering large chart data using dojo
I'm developing an application which involves complex charts. When trying to render large amount of data in the chart the browser became unresponsive and show the alert stating the stop script error. ...
1
vote
1answer
42 views
Moving a DOM node and browser repaint performance
Say I have a page with a bunch of divs stack one after another. At one point, I move the 30th one from its position below up to position, say, 5. This causes the old nodes 5 to 29 to move down a slot.
...
0
votes
2answers
57 views
Browser gzip decompression overhead / speed
What is the browser's overhead to decompress a gzip server response of an average sized web page?
<1ms 1-3ms? more?
0
votes
0answers
13 views
What influences the time an iframe is requested from browser
Can someone explain what influences the order of requests before an iframe is loaded?
My observation on one of our websites (springerprofessional.de) seems to suggest that some script files are ...
0
votes
1answer
26 views
What happens if the script tags are present after </body>?
I mistakenly added tag after in my code. But I inspect the document in browser, is was added into before .
My doubt is what happens if the script tags are present after ? Will it cause any ...
0
votes
0answers
68 views
How to embed SWF inside the HTML page
I'm trying to speeden up the load times for a website. Specs in this post. Currently the SWF is inserted with Javascript, using the SWFObject library to insert an <object> or <embed> tag ...
0
votes
1answer
46 views
Does multiple tabs of same site send multiple ajax calls?
Let imagine we have site what every second check is there any new messages:
$(function(){
setInterval(function(){
$.ajax({
url: 'message_check.php',
success: ...
7
votes
1answer
85 views
$.post jQuery faster or slower depending on the browser?
I'm trying to improve my jQuery performance and I've noticed it runs faster in Chrome than in other browsers. Does it make sense when it is just an AJAX call to a PHP file?
In order to test it, I am ...
0
votes
1answer
89 views
Is it necessary to cancel an outstanding requestAnimationFrame before calling it again?
I'm looking at the emerging standards for requestAnimationFrame and cancelAnimationFrame
http://paulirish.com/2011/requestanimationframe-for-smart-animating/
and the various polyfills provided ...
0
votes
0answers
52 views
Are the css attributes selector tag[foo=“bar”] optimized/indexed by browsers?
I am building an app that could become pretty heavy and I read this answer about browser's way to parse css. As I am using selectors like $('#questionnaire .answer[data-value="value"]') pretty often I ...
-1
votes
1answer
56 views
unresponsive script in IE. need to troubleshoot by omitting domains in browser
I have a site I am trouble shooting because of unresponsive script errors in ie. I need to narrow it down because the has a lot
Of third party includes... facebook, twitter, video, reviews,ads etc
I ...
1
vote
1answer
49 views
Are there any native methods to triangulate ordered list of points exposed in the browser?
I've been dabbling in WebGL over the past few months. WebGL Fundamentals by greggman goes through step-by-step in creating a familiar pixel space. (0, 0) is the upper-lefthand corner, matrices enable ...
1
vote
1answer
225 views
Kinetic JS performance issue in Chrome & Opera
I have some heavy performance problem in my kinetic JS app when i use Chrome or Opera browser. When i use IE or Firefox the performance is fine. You can see app here http://kinlibtst.elitno.net/
js ...
0
votes
2answers
62 views
Slideshow DOM manipulation
I've been looking at various jQuery based slideshow scripts, interested in the different approaches used and how they handle CSS3 based transitions and DOM manipulation. I've a slideshow jQuery-based ...
1
vote
1answer
69 views
How to reuse JQuery events?
I have a bunch of divs with following structure:
<div id="content">
<span class="highlight">Hello1<span>
<span class="highlight">Hello2<span>
<span ...
5
votes
1answer
85 views
When something is appended to the DOM in memory, does that cause a browser reflow?
When something is appended to the DOM in memory, does that cause a browser reflow? Or is it only when the pixels on the screen are told to change that the reflow happens? For example:
Case 1: Img ...
0
votes
1answer
38 views
Javascript application memory handling
i have the below JS:
var z = function(){
return "string";
}
var x = function(){
var y = new z();
var div = document.createElement('div');
div.innerHTML = y;
...
2
votes
0answers
95 views
How do browsers handle favicon downloads?
After just running Yahoo!'s YSlow tool in my browser on my personal website, I noticed – or rather, actually though about it for the first time! – that the results include my favicon icon. (Although ...
1
vote
1answer
47 views
In PerformanceTiming, which part of the process model do AJAX request times contribute towards?
I'm using the PerformanceTiming interface to measure page load time.
Several of my pages have a long "Browser Time" (i.e. loadEventEnd - responseEnd), and I think this could be because of the Ajax ...
0
votes
1answer
51 views
Ideal Hostnames Number to Parallelize Downloads
We are setting up a CDN to serve CSS, JS and the images. We are wondering what will be the ideal number of hostnames to distribute the ressources across. This technique is use by many websites to ...
1
vote
4answers
125 views
to reduce http requests which thing should be taken first?
I'm working on a website optimization where I need to improve the performance now so I used yslow and it suggested below things to improve to reduce http request.
Which problem should be solved ...
0
votes
2answers
97 views
What is the performance hit for loading a JS file twice, but only parsing it once?
I'm working with legacy code that frequently loads the same external javascript files many times.
I am trying to decide whether I need to find all the places that load .js files and prevent them ...
0
votes
0answers
93 views
Canvas Performance - Does the Browser Draw What isn't Visible in the Canvas Element?
So...say I have a bunch of drawImage(image, x, y) calls that aren't currently on the screen, but by ctx.translate(x, y), those images may be on the screen in the future.
For example:
<canvas ...
0
votes
1answer
28 views
is there any Impact of Installed JRE on Dojo based application, in terms of performance?
I have an application based on DOJO, with some performance issues on some workstations, not all.
We are trying to find out reason but since the behavior is not consistent its really difficult to pin ...
0
votes
0answers
69 views
Browser performance statistic service
I would like to create some html page with recomendation to update old wersion of browser or to install other browser (something like this).
I think it would be usefull for user to see performance ...
0
votes
1answer
115 views
Improve performance of CSS class switch
I have a list of items that can be displayed in "grid or list" mode.
This is implemented in HTML this way :
<!-- List mode -->
<div class="items list">
<ul></ul>
...
1
vote
1answer
41 views
What's the fastest way to set DOMElement bounds?
Currently, to place an absolute element in DOM, I use :
this.myObject.style.left = aValue1 + 'px' ;
this.myObject.style.top = aValue2 + 'px' ;
this.myObject.style.width = aValue3 + 'px' ;
...
1
vote
4answers
159 views
JavaScript browser parsing speed testing
I'm looking into the speed of JavaScript parsers in web browsers, importantly it needs to be easy to demonstrate. I came up with a simple test - the idea being that each script block is parsed and ...
1
vote
2answers
620 views
Google Chrome Silverlight Performance Is Significantly Slow
Chrome Silverlight rendering is very slow (estimation: 10 times slower) comparing to firefox and internet explorer.
You can test this simply using following sample code. Sample code demonstrates 15000 ...
1
vote
1answer
52 views
Count time browser render content
How can I count time browser render (re-render) my aspx page after page load?
(I have a lot of components on the page,so I need to compare perfomance of different approachs)
2
votes
1answer
41 views
html 5 tags in html 4 transitional
Do HTML 5 tags appearing in HTML 4 Transitional cause a performance issue? Will it validate?
Current doctype declaration:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ...
1
vote
2answers
116 views
browser repaints and performance
I have a single-page app that uses a lot of CSS3 shadows. The app consists of 8 panels that represent pages. Only 1 panel is visible at a time, while the other 7 are hidden (style display:none;). The ...
1
vote
2answers
78 views
How do these new websites load pages almost AJAX-like but update the history?
I admit. I haven't done much research on my own (damn me).
There are a few websites (Gizmodo, Hulu) that have rapid reload times and appear to be AJAXian, but update the history. It functions like a ...
1
vote
0answers
423 views
Base64 encoded web fonts
I'm dynamically adding a large (approx 170Kb) string of CSS into a <style> block. It is large because it contains a number of base64 encoded fonts in @font-family rules.
The time it takes to do ...
5
votes
2answers
172 views
Is the size of jQuery detrimental?
Before I start learning how to use the jQuery library I want to reassure myself about something that is concerning me with regards to the size of the file...
I'm well aware that browsers and servers ...
1
vote
1answer
76 views
How to improve the browser garbage collection phase of web app?
I have optimized my php/javascript web app to be fairly fast, but an analysis with the google speed tracer shows a 230ms garbage collection phase. What is it, as pertains to the speed tracer results, ...
1
vote
3answers
1k views
Preload script without execute
Problem
In order to improve the page performance I need to preload scripts that I will need to run on the bottom page.
I would like to take control of when the script is parsed, compiled and ...
1
vote
4answers
233 views
What will use less CPU ticks: insertBefore vs innerHTML?
I've got a few hundreds items list that I need to regularly ajax update and display on mobile devices (mobile wekbkit browsers predominantly). It's easier for me to generate the entire list server ...
2
votes
1answer
114 views
Estimate browser JS engine speed to conditionally disable animations
Is there a standard (accepted/easy/performant) way to determine how fast a client machine renders javascript?
When I'm running web apps (videos, etc) on my other tabs my JS animations slow to a ...
2
votes
1answer
668 views
Why does Chrome audit recommend me to minimize cookie size?
How can I minimize cookie size of my requests? Chrome seems to 'warn me' about my cookie size being 41B, which is not a lot at all, but is there a reason it warns me about it?
It is a PHPSESSID ...
0
votes
3answers
122 views
Will my site load faster if the image is on the other domain?
I'm wondering will my site perform loading faster if the images that I use to upload it on my wordpress wp-content-uploads now it's going to be store in a totally different domain (which I've control) ...
0
votes
1answer
3k views
Best way to zoom/scale/resize multiple images with Javascript?
I have a list of images inside divs and a jquery ui slider, when user slides the bar the images should be resized/zoomed (whatever you want to call it), i tried selecting all the images and changing ...
1
vote
1answer
146 views
Measuring performance of android browser
I would like to know if there is a way/hook which I can enable in android webkit to measure performance of the browser when loading sites. For example chromium on android has the "remote debugger" in ...
1
vote
5answers
446 views
Is the web browser performance rule “only 2 requests in parallel per hostname” still correct?
In his book "High Performance Websites" Steve Souders wrote (2007) that browsers limit parallel requests to a domain/hostname to two at a time. Is this still valid today?
1
vote
3answers
184 views
put javascript data in the html: inline script or data-attributes?
i need to send some data with the html page to the browser, which will be consumed by javascript (things like the user's details, etc.).
i see two ways to do it, and i wonder which one is better ...
0
votes
1answer
128 views
When does a browser send a conditional get
My understanding is a browser sends a conditional get if it is not sure if the compoonent it has is up to date. The question is what defines "not sure". I presume it varys on browser and maybe other ...
0
votes
2answers
91 views
Is it okay for performance to use a lot of ID tags?
As mentioned in title, I want to find out if there is really some performance overhead when using a lot of ID tags in html.
I know the difference between CLASSes and IDs, but I'am not sure about ...
0
votes
1answer
71 views
Add effects depending on browser performance
I'm working on my new portfolio and I want to use a complex javascript (for animating, moving, effecting dom elements) and i going to do as much as possible optimization to maximize the performance. ...
0
votes
0answers
417 views
jquery resize animation slow in all versions of firefox
See this page:
http://users.telenet.be/prullen/popup/test.html
All code is placed in the HTML document for test purposes.
I have tested up until firefox 10, it has improved a bit but is still not ...
0
votes
0answers
343 views
jQuery Animation and Browser Performance
jQuery animate() and browser performance
I have a problem with the browsers performance. (same as above except I am not using setIntervals). I used fadein and fadeout to animate between 4 different ...


