vote up 2 vote down star

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!

flag

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. – Justice Jun 11 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 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 at 4:58

6 Answers

vote up 5 vote down check

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|flag
3  
And you have to be sure to test against various versions of each browser. – Nosredna Jun 11 at 0:44
1  
How does the choice of desktop workstation influence jQuery use? – DDaviesBrackett Jun 11 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 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 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 at 3:26
show 17 more comments
vote up 0 vote down

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|flag
vote up 3 vote down

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|flag
vote up 0 vote down

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

Theory of the DOM

link|flag
vote up 0 vote down

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

link|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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