vote up 1 vote down star

What are some good interview questions to give to a candidate for a web development position that involves a lot of jQuery?

flag

closed as not programming related by Robert Harvey, ocdecio, Darko Z, Alex Martelli, George Stocker Sep 21 at 16:56

7 Answers

vote up 3 vote down

If you want to see how well they work with jQuery, then do what the others have suggested: make them write a program, and then get them to explain how it works.

But if you really just want to ask a question, then ask them how jQuery works. Here are some rough ideas:

  • What does the jQuery() function do? (there are four answer to this; subject should at least describe the selector-and-element-set mode)
  • How does jQuery respond when passed a selector that matches multiple elements?
  • How does jQuery respond when passed a selector that does not match any elements? (pay close attention to the response to this and the previous question: subject should demonstrate clear understanding of jQuery's set-based design)
  • How does the jQuery.live() function operate? (assuming subject demonstrates a basic understanding of event bubbling, follow-up questions on the advantages and limitations of this approach are in order)
  • How might you implement the > selector (or a selector of your choice) without using jQuery? (should at least cover brute-force DOM traversal, bonus points for a getElementsByTagName() path, additional bonus for use of new Selectors API when available)

Note that if you do go this route, you'd better have a solid understanding of jQuery yourself first...

link|flag
vote up 3 vote down

I'd start by posing a very simple problem, tell them they can use plain javascript or jquery to solve it. You'd be surprised at how many people a very easy question will weed out.

Have them write the solution on a whiteboard in front of you, or on a piece of paper if you don't have a whiteboard.

Don't sweat minor syntax errors. If there are any simple mistakes, tell them that you see a small problem, ask them if they can find it. When writing code by hand, without any highlighting, and under pressure, it's easy to make small bugs. If they can recover from it, don't count it against them too much.

After they give you a solution, ask them to go through the code and explain how it works.

That last bit will give you mounds of information on whether or not they understand what they are doing.

link|flag
agreed -- for me, i would want to see that they gravitate to the right jquery methods. there might be stylistic differences, but the test is whether they know how to pick tools from the toolbox. in fact, "pseudocode" would be acceptable as an answer, if the logic is right. a lot of people can write syntax, but fewer know how to combine fundamentals into a logical solution. – Matt Sherman Sep 21 at 4:37
vote up 1 vote down

If I really wanted to weed out candidates, I would do the following:

Create a non-trivial but still small webpage using jQuery. Put bugs (both syntax and functional). Allow the interviewee any tools / docs of their choice and have them fix the page.

link|flag
vote up 1 vote down

You could ask them to perform a given task in jquery with a simple sample of HTML. When they give you a valid response, you know they've at least seen and practiced JQuery. Now ask them to complete the task in a different manner (i.e. don't use this selector, etc.). Repeat until the candidate is out of ideas. The more ways to complete a given task, the more chances you have at distinguishing between candidates. :)

link|flag
vote up 0 vote down

I would suggest to let him program something simple right in front of you. You will quickly see how he is capable even in ordinary programming, that is in my opinion even more important than just jQuery itself.

Do allow to consult documentation.

link|flag
I wouldn't ask them to do it in front of me. Interviews are nerve racking enough without the pressure of someone looking over your shoulder as you go. Let the person solve it and when they're done they'll let you know or after a time limit stop them and see where they got to. – Colin Mackay Sep 21 at 0:16
That's why it has to be a SIMPLE problem. Just enough to show you that they understand the syntax. – Robert Harvey Sep 21 at 0:22
No. Seriously. I found that if you put any type of problem some people under the pressure of an interview will simply freeze and not produce an answer. They're still good developers, just not good at that sort of situation. Obviously, if you work in a high pressure environment that may be exactly what you need to do. But most development is (or should be) considered and well thought out - You want to replicate that as much as possible in an interview for an accurate analysis of ability. – Colin Mackay Sep 21 at 0:58
Just be very friendly and communicative, do not judge. That will quickly remove nervous atmosphere. (At least from my experience.) – Viliam Sep 21 at 18:47
vote up 1 vote down

I don't really go for the asking questions, although I do to some extent. To get a really good idea if someone can program well sit them in front of a computer and get them to write a program to a spec that you've created.

link|flag
vote up 1 vote down

Have them solve a couple of simple problems in jQuery during the interview, using a pen and paper. You'll know right away whether they're capable.

link|flag

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