Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
1k views

jQuery performance: $('#selector').live() vs manually bind (when working with ajax requests)

When working with content loaded asynchronously is there any difference from a performance point of view between: // .live() $('#mybutton').live('click', function(e){ doSomething(); }); and ...
7
votes
1answer
295 views

Why is this jQuery selector so slow?

Based on testing a page with ~220 elements, of which ~200 are checkbox elements, and each element has to query an array with ~200 items, I was surprised to discover that input selector: ...
5
votes
3answers
147 views

Is there a performance impact to using the jQuery $() operator many times?

Is there a significant difference if I construct a jQuery object around an element once or many times? For instance: var jEl = $(el); $.each(myArray, function() { jEl.addClass(this); } versus: ...
5
votes
4answers
584 views

Performance of jQuery selector with context

I was reading this article by Brandon Aaron here, about how jquery context may help. So i thought of doing a test of my own. So this is what I did. Created a DIV with id="context" and nested DIV ...
4
votes
3answers
606 views

jQuery UI Datepicker Slow During Typing

I've heard all these great experiences of how great and elegant jQuery is, but I'm 0 for 2 trying to implement jQuery controls in real world projects due to poor performance. I am running into a ...
2
votes
3answers
55 views

jQuery - performance accessing elements

I am making fairly heavy use of jquery ui and jqgrid in the application I am working on. In most examples I see, these controls are accessed using the jquery selector to find the element by id: ...
2
votes
2answers
98 views

Speeding up this jQuery-code with selectors

i wrote a filter for a list of many objects. Users can choose their options in via radio-buttons. Within my filter functionality i select the checked radio buttons of both radio groups/sets: if ( ...
2
votes
5answers
296 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
2answers
214 views

More efficient jQuery

I have the following code that controls the presentation of an interdependent group. The current code works, I'm wondering if there is a way to streamline the code so less is duplicated. ...
2
votes
2answers
2k views

Can it be disadvantageous to store jQuery objects in a variable?

I've just recently asked the folloiwng question with regard to jQuery chaning: ...
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 ...
2
votes
1answer
502 views

jQuery selectors performance

I know I'm just being OCD about a few milliseconds worth of performance time, but I was just wondering why the following is true for me. It seems goes against my logic. I currently have a div that ...
1
vote
2answers
65 views

reduce the amount of jquery selecters being used to speed up interactions

I have a page that has multiple selectors. Each has an on click event. I was just wondering was there a way to combine these selectors or even do a global selector and have jquery find what was ...
1
vote
1answer
127 views

Where can I find jQuery UI examples that minimize load time and honor YSlow with scripts at the bottom?

Most of the jQuery and jQuery UI examples that I find have the scripts in the header but according to the YSlow performance rules it is best to put scripts at the bottom. That way the UI gets renders ...
1
vote
3answers
636 views

jQuery toggle sibling on focus/blur

So I have this now and it works, but I wanted to know if there is an optimal way of writing this as I writing a mobile site and performance if a big thing. Think tool-tip that slides down (toggles) ...
1
vote
0answers
148 views

jQuery performance on Firefox

Hi I have this page http://samarjit.net78.net/jquerybrowser/jquery.apitest.snapshot.xml which has large amount of data. The HMTL is generated by XSLT transformation by browser. When you click ...
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
0answers
41 views

jquery autofill visibility problem

I try to implement jQuery autocomplete but I have a little trouble with its options. delay doesn't work anyway. What may cause it ? Most importantly if someone writes two chars and pressing tab ...
0
votes
0answers
130 views

jQuery UI Dialog - IE6 - performance problems. bgiframe?

I'm using jQuery UI Dialogs in IE6 (yes, I know, but it's all our clients close network will run for the forseable future). Performance seems to be very slow in comparison to thickbox (which we ...
0
votes
1answer
107 views

jQuery UI performance issues when using multiple widgets

I am creating a web application that allows users to manipulate images by resizing and moving them inside a workspace. Currently I achieve this through the use of jQuery UI's Draggable and Resizable ...
0
votes
2answers
207 views

Using a plugin vs manually populating a table with Jquery

I am contemplating between using a grid plugin for Jquery vs manually adding rows to the html table (using Jquery). All I need to do is display the data in a table, have one field editable, then save ...
0
votes
1answer
1k views

jQuery UI - Performance penalty on multiple draggable?

I have a question regarding performance. Is there a performance penalty when I call draggable (with all the same options) on already draggable Elements? I have Speech Bubbles which are draggable on a ...
0
votes
3answers
186 views

Making jQuery statements shorter

I have the following jQuery statement which works fine but I was wondering if it could be shortened and if making it more concise would speed up performance or not? The reason for the strange ...
0
votes
6answers
255 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 ...