114
votes
What is the most efficent way to clone a JavaScript object?
I want to note that the .clone() method in jQuery only clones DOM elements - in order to clone JavaScript objects you would do:
// Shallow copy
var newObject = jQuery.extend({}, oldOb …
33
votes
jQuery & Prototype Conflict
There are two possible solutions: There was a conflict with an older version of Scriptaculous and jQuery (Scriptaculous was attempting to extend the native Array prototype incorrectly) - first try …
14
votes
jQuery and “Organized Code”
Just want to add to what was mentioned previously that this:
$.each(container.children(), function(j,w) {
$(w).unbind().change(function() { ... });
});
can be …
5
votes
Moving a DOM element containing a dynamically created script tag
Whenever you append a script element into a page, using jQuery, it will attempt to execute it. Thus when you move ig_reset (which is only a table - no script) it works without issue. When you try t …
37
votes
JQuery is waiting for images to load before executing document.ready
This was due to jQuery bugs #2614 and #3880 - there were definite probl …
5
votes
Can DokuWiki & jQuery play together?
I'm not familiar with DokuWiki personally but if something is breaking just when you include jQuery then it's probably a conflict with the '$' variable in jQuery. You can use jQuery's noConflict me …
