Can I be an expert on jQuery without knowing a lot about Javascript?

JQuery provides a framework that allows you to create a lot of great features relatively simply but it's still javascript and doesn't release you from the need to have at least a reasonable understanding of javascript to use it.

JQuery provides a framework that allows you to create a lot of great features relatively simply but it's still javascript and doesn't release you from the need to have at least a reasonable understanding of javascript to use it. Javascript is one of those misunderstood languages because it's a scripting language, it's a very powerful and flexible language... learn it and you'll be grateful you did.

10 +1 Javascript is a misunderstood and an underestimated language. – Jonas Nov 12 '09 at 17:54 yes, Javascript is misunderstood. But is it because it's a scripting language?

I'd rather say because it's a functional language. – Serge - appTranslator Feb 11 at 13:16 @Serge - appTranslator: I meant that because it's classed as a scripting language (in most quarters) that people tend to underestimate the skill required to write good code. It's a perception thing that I've seen so often, I had it myself until I started with Actionscript which then led me to better practice and a better understanding of Javascript.

– Lazarus Feb 11 at 14:56.

Javascript, jQuery and Ajax - misconceptions Javascript is a language. All modern desktop web browsers support Javascript. But their support differs.

That's where jQuery comes in. It's built on top of Javascript and its functions are written in a way so they work with most of these browsers in exactly the same way. So developers don't have to write all-browser-supported javascript code by themselves.

Nontheless, jQuery is still build on top of Javascript. JQuery is a Javascript library. And when you use jQuery, you still write Javascript code.

Think of it as additional functions to the existing Javascript functionality. JQuery calls work the same on all browsers and you still use Javascript. What about Ajax.

There's no thing like Ajax animations. There are Javascript/DOM/jQuery animations. They may be triggered by Ajax calls/responses, but they are not Ajax animations.

Ajax in itself is a communication facade between your client side (Javascript code) and server side (whatever platform and language is used there). Animations are done by manipulating HTML DOM elements using Javascript + time. Libraries like jQuery provide the functionality to do this kind of stuff the easy way.

Again to make it easier on you. So you don't have to do it by yourself. Answer to your question So if you want to develop client apps using jQuery it's imperative you become familiar with Javascript.

And HTML. And DOM. Ajax is not mandatory.To become really good with jQuery one has to become really profficient in Javascript.

Because it's the client language you'll build your app. Using upgrades in the form of jQuery library. JQuery itself uses rather complex parts of Javascript that you'll have to understand to some extent to be able to debug problematic situations in your app.

That's a bit like asking if you can use ASP. NET without learning C# or VB, or if you can use the java. Math library without learning Java.

JQuery is a library to make make JavaScript programming easier. You still have to write JavaScript to use it.

Ajax and animation are two different things. AJAX (Asynchronous Javascript And XML) is a communication protocol. Animation is the art of making still things appear to move.

;-) Jquery and its associated plugins, Dojo, Script.a. Licious and other such libraries include built in animations that you can plug in without understanding the underlying javascript -- however, as everyone else here has said, understanding javascript will make your coding experience much more pleasant and effective. Don't forget that there are a very large number of answers already available on Stack Overflow that will help you become acquainted with the language (not to mention a large number of experts willing to give even more help.) I'd recommend starting with some of these questions: The dden Features of Javascript How Does Javascript's Prototype work Object Construction with Prototyping.

No While you can certainly use jQuery without knowing JavaScript, there's absolutely no way to become an "expert" at jQuery without knowing JavaScript. You'll be fine without a JavaScript background if you just need basic animations, event handlers, and DOM traversal. But being an "expert" at jQuery presumably requires more than that, in which case you'll need to learn JavaScript in order to write clean, elegant, and maintainable jQuery code.

I am a backend programmer So there is your answer: no, because jQuery is javascript for designers. Edit whoever voted this down really is too serious in life :-).

No. I suppose jQuery is Javascript for web client developers. Not necessarily designers.

You're lucky if you get a designer with programming knowledge on your project. On the other hand I doubt that any designer (not being intrinsic developer) would write any useful code. – Robert Koritnik Nov 12 '09 at 18:42 There are a lot of designers out there who know jQuery but not much JavaScript.

I run into them all the time. They know HTML, CSS, and enough jQuery to do some simple transitions and animations. – Nosredna Nov 15 '09 at 17:09 jqueryfordesigners.com webdesignerwall.Com/tutorials/jquery-tutorials-for-designers designer-daily.

Com/… – Nosredna Nov 15 '09 at 17:11 I think pretty much everyone who’s done any DOM manipulation with JavaScript finds its CSS selector engine useful. – Paul D. Waite Aug 18 '10 at 10:57.

Learning the ins and outs of Javascript will make your jQuery experience much more pleasureable. Specifically I would recommend looking at Javascript's unusual model for OOP, closures, scoping, namespacing - that sort of thing. It will make life much easier for you.

JQuery is a JavaScript library the way stdlib is a C library, so yes you'll need to know minimal JavaScript as well as basic understanding of CSS/HTML. However, learning jQuery is probably the best way to learn JavaScript these days, as it takes care of the big hurdles that trip up those new to JavaScript (the DOM and the event model) and makes AJAX a breeze. It also encourages best practices such as unobtrusive JavaScript, as opposed to putting "onclick" everywhere, and forces you to learn about closures.

If you're already a programmer, you'll have no problem picking it up.

Yes you can but you will not be able to do complicated stuff which will use pure javascript, because jquery is not everything. But with the help of the internet and seeing examples, you can do alot.

JQuery in its core is javascript. Learning javascript would be good but with jQuery it is not really required.

You need to learn JavaScript, but you don't need to learn the DOM or raw XHR. This is what jQuery saves you from.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions