READ Free Dumps For Microsoft- 70-480
Question ID 14815 | You are developing a web page that has a group of H1 and H2 elements. The page also
includes a CSS class named underlineMe.
You have the following requirements:
✑ The font color of all H1 and H2 elements must be changed to red.
✑ The CSS class underlineMe must be applied to all H1 and H2 elements.
You need to update the web page to meet the requirements.
Which code segment should you use?

|
Option A | Option A
|
Option B | Option B
|
Option C | Option C
|
Option D | Option D
|
Correct Answer | D |
Explanation Explanation: The :header selector selects all header elements (
to
). Reference: jQuery :header Selector http://www.w3schools.com/jquery/sel_header.aspx.
Question ID 14816 | You are developing a form that captures a user's email address by using HTML5 and
jQuery.
The form must capture the email address and return it as a query string parameter. The
query string parameter must display the @ symbol used in the email address.
You need to implement this functionality.
How should you develop the form? (To answer, select the appropriate options from the
drop-down lists in the answer area.)

|
Option A | 

* serialize() Encode a set of form elements as a string ready for submission. decodeURIComponent * To decode the string, PHP offers the urldecode() function. ? echo urldecode('name%40website.com'); //restores "name@website.com"
|
Correct Answer | A |
Explanation