InterviewSolution
Saved Bookmarks
| 1. |
Can you write a jQuery code selector that needs to be used for querying all elements whose ID ends with string “IB”? |
|
Answer» We can use the following selector: $("[id$='IB']") |
|