1.

What is jqXHR object?

Answer»

In JQUERY, most DOM EVENTS have an equivalent jQuery function.

To assign an event to an element, ADD a period, the event name and a SET of parentheses.

Ex:

The following line add a mouseover event to every link on a page.

$('a').mouseover();

The following line add a click event to every with an ID of menu.

$('#menu').click();


Discussion

No Comment Found