InterviewSolution
Saved Bookmarks
| 1. |
Which of the following selects every element whose href attribute value contains the given substring?(a) attribute$=value(b) attribute*=value(c) attribute^=value(d) attribute|=value |
|
Answer» Right option is (b) attribute*=value To explain I would say: attribute*=value selects every element whose href attribute value contains the given substring, attribute$=value selects every element whose href attribute value ends with the given href, attribute^=value selects every element element whose href attribute value begins with “https”. |
|