tags:

views:

87

answers:

3

Hi All, This may be a stupid question but however I searched in google with

"jquery interview questions" which didnot worked out much except for

JQuery Interview Questions and few sites with almost the sismilar question pattern(which are ultimately very basic).

Is there any good site where I can get JQuery questions starting from basic to advance.

Thanks

+6  A: 

If you hire someone based on a library, there is a serious problem there.

To be an "expert at jQuery", good knowledge of JavaScript is needed, since that's the language. Someone good at JavaScript should be able to pick up any library within a few days. Besides, jQuery isn't exactly brain surgery and most IDEs have support for it built in.

See this question: http://stackoverflow.com/questions/1069857/advanced-javascript-interview-questions

Coronatus
Agreed; jQuery should be very easy to pick up for anyone who is a JavaScript expert or knows another framework very well.
strager
I agree too with your view
priyanka.sarkar_2
A: 

Just a couple of ideas off the top of my head

Basic

  • Provide an example of how to bind a click event to all paragraphs, except the last one (covers basic dom selection & event handling)
  • Example of how to fade in a div from an invisible state

Advanced

  • Write an selector filter to return only nodes with lower case values.

ie

$.expr[':'].lowercaseOnly = function(el, i, m) {
  ...
}

I also agree with @Coronatus answer. A good jQuery developer should have a solid knowledge of js.

Ben Rowe
A: 

It's easy to pick up jQuery if a developer has good understanding of JavaScript. You could ask questions where there is a strong overlap. Some not so common questions I can think of:

  1. Implementing a function like ready for an external resource that is loaded only once. It must behave exactly like jQuery's ready function. If the resource is not yet loaded, it adds the callback function to be called later. Otherwise, it calls the callback immediately. Fire all stored callbacks when the resource loads.

  2. What are special events in jQuery, and where can they be used? Maybe make up an example of a composite touch event such as tap, and drag at the same time using two fingers.

Anurag