User John Resig - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T03:34:10Z http://stackoverflow.com/feeds/user/6524 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/490426/can-dokuwiki-jquery-play-together/490469#490469 5 Answer by John Resig for Can DokuWiki & jQuery play together? John Resig 2009-01-29T04:23:39Z 2009-01-29T04:23:39Z <p>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 method to get around that, more information here: <a href="http://docs.jquery.com/Using_jQuery_with_Other_Libraries" rel="nofollow">http://docs.jquery.com/Using_jQuery_with_Other_Libraries</a></p> <p>See also this Stack Overflow post: <a href="http://stackoverflow.com/questions/134572/jquery-prototype-conflict">http://stackoverflow.com/questions/134572/jquery-prototype-conflict</a></p> http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready/489772#489772 36 Answer by John Resig for JQuery is waiting for images to load before executing document.ready John Resig 2009-01-28T22:47:38Z 2009-01-28T22:57:59Z <p>This was due to jQuery bugs #<a href="http://dev.jquery.com/ticket/2614" rel="nofollow">2614</a> and #<a href="http://dev.jquery.com/ticket/3880" rel="nofollow">3880</a> - there were definite problems with the ready code in IE in 1.2.6 and in 1.3 - and now a different set of problems in 1.3.1.</p> <p>A larger discussion can be found here:<br> <a href="http://groups.google.com/group/jquery-dev/browse_thread/thread/3abf45d3fd4d50fc" rel="nofollow">http://groups.google.com/group/jquery-dev/browse_thread/thread/3abf45d3fd4d50fc</a></p> <p>And the ticket related to the issue can be found here (if you find additional issues with the fix, please re-open the ticket and post to the above jquery-dev thread):<br> <a href="http://dev.jquery.com/ticket/3988" rel="nofollow">http://dev.jquery.com/ticket/3988</a></p> <p>I just landed a fix for this in SVN rev <a href="http://dev.jquery.com/changeset/6170" rel="nofollow">6170</a>.</p> <p>I just pushed up a new nightly that you can use until 1.3.2 final comes out: <br><a href="http://code.jquery.com/nightlies/jquery-2009-01-28.js" rel="nofollow">http://code.jquery.com/nightlies/jquery-2009-01-28.js</a></p> <p>Sorry in the delay for getting a fix out - was traveling this week.</p> http://stackoverflow.com/questions/318336/moving-a-dom-element-containing-a-dynamically-created-script-tag/318385#318385 5 Answer by John Resig for Moving a DOM element containing a dynamically created script tag John Resig 2008-11-25T18:22:36Z 2008-11-25T18:22:36Z <p>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 to move the wrapper - which contains the script - the script is moved and re-executed.</p> <p>We're working to fix this re-execution issue in jQuery core but for the time being that's what is going on here.</p> http://stackoverflow.com/questions/251814/jquery-and-organized-code/255222#255222 13 Answer by John Resig for jQuery and "Organized Code" John Resig 2008-10-31T23:08:22Z 2008-11-05T03:56:18Z <p>Just want to add to what was mentioned previously that this:</p> <pre><code>$.each(container.children(), function(j,w) { $(w).unbind().change(function() { ... }); }); </code></pre> <p>can be optimized to:</p> <pre><code>container.children().unbind().change(function() { ... }); </code></pre> <p>It's all about chaining, a great way to simplify your code.</p> http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc/141504#141504 20 Answer by John Resig for What is the best way to parse a time into a Date object from user input in Javascript? John Resig 2008-09-26T19:44:31Z 2008-11-02T16:00:32Z <p>A quick solution which works on the input that you've specified:</p> <pre><code>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','13:00','13']; for ( var i = 0; i &lt; times.length; i++ ) { var d = new Date(); var time = times[i].match(/(\d+)(?::(\d\d))?\s*(p?)/); d.setHours( parseInt(time[1]) + (time[3] ? 12 : 0) ); d.setMinutes( parseInt(time[2]) || 0 ); console.log( d ); } </code></pre> <p>It should work for a few other varieties as well (even if a.m. is used, it'll still work - for example). Obviously this is pretty crude but it's also pretty lightweight (much cheaper to use that than a full library, for example).</p> http://stackoverflow.com/questions/141198/how-do-i-detect-a-keyboard-modifier-in-a-bookmarklet/141225#141225 6 Answer by John Resig for How do I detect a keyboard modifier in a bookmarklet? John Resig 2008-09-26T18:48:47Z 2008-09-26T18:48:47Z <p>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 is generally called the browser "chrome" - which is confusing since there's now a browser with that name) it's not possible to detect JavaScript-related events there.</p> <p>That being said, if you created this as a Firefox extension then you would have access to event information, JavaScript, and keyboard modifiers. But that doesn't appear to be what you're looking for.</p> http://stackoverflow.com/questions/134572/jquery-prototype-conflict/136502#136502 33 Answer by John Resig for jQuery & Prototype Conflict John Resig 2008-09-25T22:08:02Z 2008-09-25T22:21:23Z <p>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 upgrading your copy of Scriptaculous.</p> <p>If that does not work you will need to use <code>noConflict()</code> (as alluded to above). However, there's a catch. Since you're including a plugin you'll need to do the includes in a specific order, for example:</p> <pre><code>&lt;script src="jquery.js"&gt;&lt;/script&gt; &lt;script src="jquery.autocomplete.js"&gt;&lt;/script&gt; &lt;script&gt; jQuery.noConflict(); jQuery(document).ready(function($){ $("#example").autocomplete(options); }); &lt;/script&gt; &lt;script src="prototype.js"&gt;&lt;/script&gt; &lt;script src="effects.js"&gt;&lt;/script&gt; &lt;script src="accordion.js"&gt;&lt;/script&gt; </code></pre> <p>Hope this helps to clarify the situation.</p> http://stackoverflow.com/questions/135448/how-do-i-check-to-see-if-an-object-has-an-attribute-in-javascript/136411#136411 46 Answer by John Resig for How do I check to see if an object has an attribute in Javascript? John Resig 2008-09-25T21:52:02Z 2008-09-25T21:52:02Z <p>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 reducing the property check to <code>typeof this[property]</code> or, even worse, <code>x.key</code> will give you completely misleading results.</p> <p>It depends on what you're looking for. If you want to know if an object physically contains a property (and it is not coming from somewhere up on the prototype chain) then <code>object.hasOwnProperty</code> is the way to go. All modern browsers support it. (It was missing in older versions of Safari - 2.0.1 and older - but those versions of the browser are rarely used any more.)</p> <p>If what you're looking for is if an object has a property on it that is iterable (when you iterate over the properties of the object, it will appear) then doing: <code>prop in object</code> will give you your desired effect.</p> <p>Since using <code>hasOwnProperty</code> is probably what you want, and considering that you may want a fallback method, I present to you the following solution:</p> <pre><code>var obj = { a: undefined, b: null, c: false }; // a, b, c all found for ( var prop in obj ) { document.writeln( "Object1: " + prop ); } function Class(){ this.a = undefined; this.b = null; this.c = false; } Class.prototype = { a: undefined, b: true, c: true, d: true, e: true }; var obj2 = new Class(); // a, b, c, d, e found for ( var prop in obj2 ) { document.writeln( "Object2: " + prop ); } function hasOwnProperty(obj, prop){ var proto = obj.__proto__ || obj.constructor.prototype; return (prop in obj) &amp;&amp; (!(prop in proto) || proto[prop] !== obj[prop]); } if ( Object.prototype.hasOwnProperty ) { function hasOwnProperty(obj, prop){ return obj.hasOwnProperty(prop); } } // a, b, c found in modern browsers // b, c found in Safari 2.0.1 and older for ( var prop in obj2 ) { if ( hasOwnProperty(obj2, prop) ) { document.writeln( "Object2 w/ hasOwn: " + prop ); } } </code></pre> <p>The above is a working, cross-browser, solution to <code>hasOwnProperty</code>, with one caveat: It is unable to distinguish between cases where an identical property is on the prototype and on the instance - it just assumes that it's coming from the prototype. You could shift it to be more lenient or strict, based upon your situation, but at the very least this should be more helpful.</p> http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object/122704#122704 108 Answer by John Resig for What is the most efficent way to clone a JavaScript object? John Resig 2008-09-23T18:09:37Z 2008-09-23T18:22:08Z <p>I want to note that the .clone() method in jQuery only clones DOM elements - in order to clone JavaScript objects you would do:</p> <pre> // Shallow copy var newObject = jQuery.extend({}, oldObject); // Deep copy var newObject = jQuery.extend(true, {}, oldObject);</pre> <p>More information can be found in the <a href="http://docs.jquery.com/Utilities/jQuery.extend" rel="nofollow">jQuery documentation</a>.</p> <p>I also want to note that the deep copy is actually much smarter than what is shown above - it's able to avoid many traps (trying to deep extend a DOM element, for example). It's used frequently in jQuery core and in plugins to great effect.</p> http://stackoverflow.com/questions/1548701/jquery-cannot-use-ajax-response-as-context-in-ie/1554310#1554310 Comment by John Resig on jquery cannot use ajax response as context in IE John Resig 2009-10-12T16:27:56Z 2009-10-12T16:27:56Z I filed a bug: <a href="http://dev.jquery.com/ticket/5358" rel="nofollow">dev.jquery.com/ticket/5358</a> and just landed a fix for the problem: <a href="http://dev.jquery.com/changeset/6617" rel="nofollow">dev.jquery.com/changeset/6617</a> The change will be in an upcoming nightly and in jQuery 1.4. Thanks for spotting this! http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready/489772#489772 Comment by John Resig on JQuery is waiting for images to load before executing document.ready John Resig 2009-01-30T15:44:52Z 2009-01-30T15:44:52Z @Simon: We can't just push out releases whenever we feel like it - we have to coordinate with a number of people. We're working on getting something out, quite soon, but it might be a little bit. http://stackoverflow.com/questions/139723/which-javascript-framework-is-the-simplest-and-most-powerful/139846#139846 Comment by John Resig on Which Javascript Framework is the simplest and most powerful? John Resig 2008-09-26T16:59:28Z 2008-09-26T16:59:28Z @AnthonyWJones: &quot;yui&quot; is a common name in Asia (especially in Japan) and &quot;prototype&quot; is a common English word. So taking that into account it's especially impressive that jQuery is still doing so well on that chart. This is the preferred Accordion, at this point: <a href="http://docs.jquery.com/UI/Accordion" rel="nofollow">docs.jquery.com/UI/Accordion</a>