is there an easy way to convert jquery code to javascript? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T05:48:54Zhttp://stackoverflow.com/feeds/question/978799http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/978799/is-there-an-easy-way-to-convert-jquery-code-to-javascript2is there an easy way to convert jquery code to javascript?davidsleeps2009-06-11T00:39:41Z2009-09-02T05:57:44Z
<p>hopefully the question doesn't sound stupid, but there are lots of examples out there of achieving certain things in javascript/dom using jQuery. Using jQuery is not always an option (or even a want) which can make understanding the examples of javascript solutions written in jQuery hard.</p>
<p>Is there an easy way to convert jQuery code to regular javascript? I guess without having to access or understand the jQuery source code...</p>
<p>edit (future readers): pretend there is a logical reason why jQuery isn't available!</p>
http://stackoverflow.com/questions/978799/is-there-an-easy-way-to-convert-jquery-code-to-javascript/978803#9788035Answer by Pim Jager for is there an easy way to convert jquery code to javascript?Pim Jager2009-06-11T00:42:50Z2009-06-11T00:54:38Z<p>The easiest way is to just learn how to do DOM traversing and manipulation with the plain DOM api (you would probably call this: normal JavaScript). </p>
<p>This can however be a pain for some things. (which is why libraries where invented in the first place).</p>
<p>Googling for "javascript DOM traversing/manipulation" should give plenty of helpful (and less helpful) resources.</p>
<p>The articles on this website are pretty good: <a href="http://www.htmlgoodies.com/primers/jsp/" rel="nofollow">http://www.htmlgoodies.com/primers/jsp/</a></p>
<p>And as Nosredna points out in the comments: be sure to test in all browsers, because now jQuery won't be handling the inconsistency's for you.</p>
http://stackoverflow.com/questions/978799/is-there-an-easy-way-to-convert-jquery-code-to-javascript/978829#9788291Answer by dylanfm for is there an easy way to convert jquery code to javascript?dylanfm2009-06-11T00:55:56Z2009-06-11T00:55:56Z<p>Jeremy Keith's book "<a href="http://domscripting.com/book" rel="nofollow">DOM Scripting</a>" is a great intro to working with Javascript and the DOM. I highly recommend it, whether you want to use jQuery or not. It's good to know what's going on beneath.</p>
http://stackoverflow.com/questions/978799/is-there-an-easy-way-to-convert-jquery-code-to-javascript/978863#9788630Answer by Nosredna for is there an easy way to convert jquery code to javascript?Nosredna2009-06-11T01:12:15Z2009-06-11T01:12:15Z<p>There are several good books available. I like ppk on JavaScript. Here's C<a href="http://www.webreference.com/programming/javascript/ppk1/index.html" rel="nofollow">hapter 8 on the DOM</a>.</p>
http://stackoverflow.com/questions/978799/is-there-an-easy-way-to-convert-jquery-code-to-javascript/978923#9789230Answer by bobobobo for is there an easy way to convert jquery code to javascript?bobobobo2009-06-11T01:42:05Z2009-06-11T03:39:23Z<p>If you want to learn javascript, <a href="http://video.yahoo.com/watch/111593/1710507" rel="nofollow">watch these Doug Crockford videos</a>. They are very good.</p>
<p><a href="http://video.yahoo.com/watch/111582/992708" rel="nofollow">Theory of the DOM</a></p>
http://stackoverflow.com/questions/978799/is-there-an-easy-way-to-convert-jquery-code-to-javascript/979266#9792663Answer by rpflo for is there an easy way to convert jquery code to javascript?rpflo2009-06-11T04:06:40Z2009-06-11T04:06:40Z<blockquote>
<p>Is there an easy way to convert jQuery
code to regular javascript?</p>
</blockquote>
<p>No, especially if:</p>
<blockquote>
<p>understanding the
examples of javascript solutions
written in jQuery [is] hard. </p>
</blockquote>
<p>JQuery and all the frameworks tend to make understanding the code easier. If that's difficult to understand, then vanilla javascript will be torture :)</p>
http://stackoverflow.com/questions/978799/is-there-an-easy-way-to-convert-jquery-code-to-javascript/1366032#13660320Answer by Bill Fisher for is there an easy way to convert jquery code to javascript?Bill Fisher2009-09-02T05:57:44Z2009-09-02T05:57:44Z<p>I can see a reason, unrelated to the original post, to automatically compile jQuery code into standard JavaScript:</p>
<p>16k -- or whatever the gzipped, minified jQuery library is -- might be too much for your website that is intended for a mobile browser. The w3c is recommending that all HTTP requests for mobile websites should be a maximum of 20k.</p>
<p><a href="http://www.w3.org/TR/mobileOK-basic10-tests/#PAGE%5FSIZE%5FLIMIT" rel="nofollow">w3c specs for mobile</a></p>
<p>So I enjoy coding in my nice, terse, chained jQuery. But now I need to optimize for mobile. Should I really go back and do the difficult, tedious work of rewriting all the helper functions I used in the jQuery library? Or is there some kind of convenient app that will help me recompile?</p>
<p>That would be very sweet. Sadly, I don't think such a thing exists.</p>