0 of 35 questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 35 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
jQuery uses CSS selectors to select elements?
Which sign does jQuery use as a shortcut for jQuery?
The jQuery html() method works for both HTML and XML documents
jQuery’s main focus is..
Which of the following is a single global function defined in the jQuery library?
Which is the method that operates on the return value of $()?
Which jQuery function is used to prevent code from running, before the document is finished loading?
If you want to stop your jQuery for a few milliseconds, which function do you use?
What is the each function used for?
<script language=”javascript”>
function x()
{
document.write(2+5+”8″);
}
</script>
What is the correct jQuery code to set the background color of all p elements to red?
Using ________ function, we can hold or release the execution of jQuery’s ready event.
Which jQuery method is used to perform an asynchronous HTTP request?
$(document).read(function(){
//some code
});
The above code is used to
Why do we usually add the stop() method before calling animate()?
What is the correct jQuery code for making all div elements 100 pixels high?
Which jQuery method is used to hide selected elements?
Which function do you reference in HTML form data?
Which jQuery method should be used to deal with name conflicts?
Which jQuery method is used to switch between adding/removing one or more classes (for CSS) from selected elements?
Look at the following jQuery selector: $(“div#intro .head”). What does it select?
Which statement best explains what “unobtrusive JavaScript” is?
Which of these is NOT a valid comment in JavaScript?
var ps=$(“p”);
ps will be..
Query .noconflict(true)is used to..
The method that provides AJAX functionality within jQuery is named.
The CSS selector engine that jQuery uses is called?
$(‘#masterList’).find(‘li’)
.width(500).addClass(‘Selected’);
The phenomena occuring in the above code is called?
Which of the following jQuery method returns true if the specified class is present on at least one of the set of matched elements?
Which of the following elements can you attach jQuery events to?
Consider the following code snippet?
function function1()
{
alert(arguments.length());
}
Which of the following is true when you run function1(); ?
Which jQuery method is used to remove selected elements?
What are the :odd and :even filters?
Triggers, or binds a function to the error event of selected elements
You can attach a handler to an event using which method?