jQuery

 40 Minutes
 20 Questions


Test 1: Technology, jQuery, Basic This test is designed to assess a candidate's basic knowledge of technology and jQuery. It will cover topics such as HTML, CSS, JavaScript, and the fundamentals of jQuery. The test will also include questions on basic coding concepts and techniques. Test 2: Technology, jQuery, Advanced This test is designed to assess a candidate's advanced knowledge of technology and jQuery. It will cover topics such as AJAX, JSON, DOM manipulation, and advanced jQuery techniques. The test will also include questions on more complex coding concepts and techniques.


Example Question:

Multiple-Choice
What will happen if you press on the green div according to the jQuery code below?
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div").click(function(){
$("p#pid").html($(this).css("background-color"));
});
});
</script>
</head>
<body>
<div style="width:100px;height:100px;background:green"></div>
<p id="pid">Test</p>
<p>Test2</p>
</body>
</html>