Which code segment should you add to the webpage?

You develop an HTML5 webpage. You have the following HTML markup:

You need to change the background color for all of the elements whose name attribute ends with the word
name.
Which code segment should you add to the webpage?

You develop an HTML5 webpage. You have the following HTML markup:

You need to change the background color for all of the elements whose name attribute ends with the word
name.
Which code segment should you add to the webpage?

A.
$ (‘input [name!=”name”]’) .css ({ ‘background-color’ : ‘ #E0ECF8’}) ;

B.
${‘input [name=”~name”] ‘) .css ({ ‘background-color’ : ‘ #E0ECF8’ }) ;

C.
${‘input[name=”*name”]’).css({‘background=color’: #E0ECF8′});

D.
$( ‘input [name=”$name”] ‘) .css ({ ‘background-color’ : ‘#E0ECF8’});

Explanation:
The string pattern “*name” matches all strings that ends with name.



Leave a Reply 4

Your email address will not be published. Required fields are marked *


M

M

WRONG! the selector must look like that:

$( ‘input [name$=”name”] ‘) .css ({ ‘background-color’ : ‘#E0ECF8’});

Mkool

Mkool

D is the correct option

CasiProgramoMEXAPOWA

CasiProgramoMEXAPOWA

The answer are wrong, the correct code should be $(‘input[name*=”name”]’).css({‘background-color’:’#E0ECF8′});
But the following code is correct too.
$(‘input[name$=”name”]’).css({‘background-color’:’#E0ECF8′});