Search
⏱️ Time Left --:--
🏆 Score 0/26
Wrong 0/26
🎯 Accuracy -
📊 Answered 0/26
Overall Progress 0%
Q1
jQuery is a javascript__ ?
Q2
What is the right way to hide all <h2> elements?
Q3
Which of the following are jQuery features?
Q4
Which companies are using the jQuery?
Q5
jQuery library is a single JavaScript file__
Q6
What is the basic syntax of jQuery?
Q7
What does $ sign means in jQuery?
Q8
Which one is responsible to find an HTML element in jquery?
Q9
What is the use of $(this) in jQuery?
Q10
How a selector start in jQuery?
Q11
When a user click what will be happen here?  
$(document).ready(function(){
  $("button").click(function(){
    $("#WebJourney").hide();
  });
});
Q12
Which selector finds elements with a specific class?
Q13
What are the mouse events in JQuery?
Q14
What are the keyboard events in JQuery?
Q15
Which of the following is not a document events in JQuery?
Q16
Which of the bellow one is not  a form event in JQuery?
Q17
In JQuery the hide() method accept max __ parameter?  
$(selector).hide(--);
Q18
What of the following values can take by the optional speed parameter inside show() method?  
$(selector).show(speed)
 
Q19
What are the Jquery fade methods?
Q20
When a callback function is executed in JQuery?
Q21
Is there any callback parameter in the bellow code snippet?  
$("button").click(function(){
  $("h2").show(500);
  alert("The heading is now showing");
});
 
Q22
How many methods are chaining in the bellow example?  
$("#chains_count").css("color", "black").slideUp(1000).slideDown(3000);
Q23
JQuery can not manipulate the document object model.
Q24
Which of the following one is not a JQuery method?
Q25
What is the task of val() method in JQuery?
Q26
What you will show in alert box if hit the button__  
$("#click_me").click(function(){
    alert($("#test").text());
  });

<p id="test">Welcome to Web Journey</p>
<button id="click_me">Click Me</button>

Quizzes

Categories