up vote 8 down vote favorite
2
share [g+] share [fb]

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.

Is there an easy way to convert jQuery code to regular javascript? I guess without having to access or understand the jQuery source code...

edit (future readers): pretend there is a logical reason why jQuery isn't available!

link|improve this question

I can't imagine why you would ever want to do this. But you can always use the vanilla JavaScript DOM to do in ten lines what you could do in one using jQuery. – yfeldblum Jun 11 '09 at 1:21
i was basically after something that did convert the 1 jquery line into 10 vanilla javascript lines...for cases when jquery isn't available... – davidsleeps Jun 11 '09 at 3:09
Even if you can't use a script tag to include jQuery, you could always prepend a minified verison to the source file. I can't see any reason why jQuery wouldn't be available other than some sort of corporate politics. – cdmckay Jun 11 '09 at 4:58
I can see good use for this as well. Suppoe you use only about 10-100 lines in javascript with jQuery. It would save bandwidth by recompiling and substituting functions to the core methods and thus not load everything else from jQuery. – TeMC Jan 31 '11 at 1:23
I have another reason, similar to the above two, yet in new context. I was playing around with the idea of making my own unique markup language for writing quick HTML, CSS, and JS. The idea was just to make a simple text parser to convert my syntax to html tags and so forth. It'd be nice to use the jquery library with any generated scripts (the point is after all to develop faster) without the whole jquery library being tacked onto each file. A quick "jquery_to_js" after the parser would make it pretty concise and tidy. – Samuel Jan 31 '11 at 1:27
show 3 more comments
feedback

7 Answers

up vote 5 down vote accepted

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).

This can however be a pain for some things. (which is why libraries where invented in the first place).

Googling for "javascript DOM traversing/manipulation" should give plenty of helpful (and less helpful) resources.

The articles on this website are pretty good: http://www.htmlgoodies.com/primers/jsp/

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.

link|improve this answer
3  
And you have to be sure to test against various versions of each browser. – Nosredna Jun 11 '09 at 0:44
1  
How does the choice of desktop workstation influence jQuery use? – Dan Davies Brackett Jun 11 '09 at 0:53
3  
I sympathize with the politics of using an open-source library for some organizations. In the end the time you're spending rewriting plainly (and likely buggily) into plain DOM traversal and JS is wasted money for the company. You might make the case that large companies, including very conservative ones, use jQuery: docs.jquery.com/Sites_Using_jQuery: Oracle, Google, Amazon, Dell, Bank of America, Intuit, Salesforce. These are hardly hippie communist companies. These are very real companies whose legal departments have probably done their homework and accepted jQuery... – artlung Jun 11 '09 at 1:10
2  
@davidsleeps - jQuery is sanctioned by Microsoft...It is included in Visual Studio 2008, which technically makes it a "Microsoft" tool. Would that make your employer feel better? – Robert Harvey Jun 11 '09 at 1:17
2  
What is the difference to your company between jquery and a whole bunch of javascript that you wrote to do the same thing? Its not like you are installing anything, coding in a new language or adding ANY dependancies. This is honestly the stupidest thing I've heard, allowing javascript but not jQuery. jQuery IS JAVASCRIPT! – micmcg Jun 11 '09 at 3:26
show 17 more comments
feedback

Is there an easy way to convert jQuery code to regular javascript?

No, especially if:

understanding the examples of javascript solutions written in jQuery [is] hard.

JQuery and all the frameworks tend to make understanding the code easier. If that's difficult to understand, then vanilla javascript will be torture :)

link|improve this answer
feedback

Jeremy Keith's book "DOM Scripting" 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.

link|improve this answer
feedback

There are several good books available. I like ppk on JavaScript. Here's Chapter 8 on the DOM.

link|improve this answer
feedback

If you want to learn javascript, watch these Doug Crockford videos. They are very good.

Theory of the DOM

link|improve this answer
feedback

I can see a reason, unrelated to the original post, to automatically compile jQuery code into standard JavaScript:

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.

w3c specs for mobile

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?

That would be very sweet. Sadly, I don't think such a thing exists.

link|improve this answer
feedback

The answer is "no", since you have easiness as a requirement.

There is no easy way to do it. The easy way to convert jQuery code to javaScript code is of course just to use jQuery, but you have ruled that out as a valid answer.

In my opinion, learning vanilla javaScript is not a valid answer either, because it is nowhere near easy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.