jQuery Flashcards

1
Q

Which of the following is NOT one of jQuery’s core competencies?
Selectors
Event handling
AJAX
MVC

A

MVC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The library jQuery can be included in an HTML page by using a script tag which points to a Content Delivery Network (CDN) or the locally downloaded file. (T/F)

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which of the following is NOT a way jQuery can select HTML elements from the Document Object Model (DOM)?
Selecting nodes by tag name
Selecting nodes by class name
Selecting nodes by magic reference
Selecting nodes by attribute value

A

Selecting nodes by magic reference

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

You can dynamically select elements from the DOM, but you CANNOT change the elements using jQuery. (T/F)

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which of the following is FALSE about the jquery.ajax() method.
The method runs synchronously.
You can choose to send the request as a GET or a POST
You can send data to the server AND receive data back from the server
You designate a function called success that runs when the server returns its response.

A

The method runs synchronously.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly