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.
correct answer is D
1
0
Mas is right about D
1
0
the answer is D
1
0
D right!
1
0
D
1
0
D
1
0
D, but it should write [name$=”name”]
1
0