JQuery Programmer

  Home  Client Side Scripting  JQuery Programmer


“JQuery Programmer Frequently Asked Questions in various JQuery Developer job Interviews by interviewer. The set of questions here ensures that you offer a perfect answer posed to you. So get preparation for your new job hunting”



154 JQuery Programmer Questions And Answers

62⟩ What are the core features of jQuery?

Following is the list of important core features supported by jQuery −

► DOM manipulation − The jQuery made it easy to select DOM elements, traverse them and modifying their content by using cross-browser open source selector engine called Sizzle.

► Event handling − The jQuery offers an elegant way to capture a wide variety of events, such as a user clicking on a link, without the need to clutter the HTML code itself with event handlers.

► AJAX Support − The jQuery helps you a lot to develop a responsive and feature-rich site using AJAX technology.

► Animations − The jQuery comes with plenty of built-in animation effects which you can use in your websites.

► Lightweight − The jQuery is very lightweight library - about 19KB in size ( Minified and gzipped ).

► Cross Browser Support − The jQuery has cross-browser support, and works well in IE 6.0+, FF 2.0+, Safari 3.0+, Chrome and Opera 9.0+.

► Latest Technology − The jQuery supports CSS3 selectors and basic XPath syntax.

 276 views

64⟩ What is a jQuery selector?

A jQuery Selector is a function which makes use of expressions to find out matching elements from a DOM based on the given criteria. Simply you can say, selectors are used to select one or more HTML elements using jQuery. Once an element is selected then we can perform various operations on that selected element. jQuery selectors start with the dollar sign and parentheses - $().

 258 views

75⟩ What is the use of jQuery filter?

The jQuery filter is used to filter the certain values from the object list based on the criteria. Example is to filter certain products from the master list of products in a cart website.

 252 views