Prototype Framework Question:
Download Questions PDF

Explain The $$() function?

Prototype Interview Question
Prototype Interview Question

Answer:

The dollar dollar function is Prototype's CSS Selector Engine. It returns all matching elements, following the same rules as a selector in a CSS stylesheet. For example, if you want to get all <a> elements with the class "pulsate", you would use the following:

$$("a.pulsate")

This returns a collection of elements. If you are using the script.aculo.us extension of the core Prototype library, you can apply the "pulsate" (blink) effect as follows:

$$("a.pulsate").each(Effect.Pulsate);

Download Prototype Interview Questions And Answers PDF

Previous QuestionNext Question
Explain The $F() function?Explain the Ajax object?