112
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 …
47
votes
How do I check to see if an object has an attribute in Javascript?
I'm really confused by the answers that have been given - most of them are just outright incorrect. Of course you can have object properties that have undefined, null, or false values. So simply re …
6
votes
How do I detect a keyboard modifier in a bookmarklet?
If you're looking for a way to detect the mouse position while the bookmarklet is being physically clicked, no, there is no way. Since the bookmarklet is positioned outside of any page (this area i …
20
votes
What is the best way to parse a time into a Date object from user input in Javascript?
A quick solution which works on the input that you've specified:
var times = ['1:00 pm','1:00 p.m.','1:00 p','1:00pm',
'1:00p.m.','1:00p','1 pm','1 p.m.','1 p','1pm','1p.m.', '1p' …
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 …
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 …
