How can I select some divs with class name pattern a-<random>-c.
How can I select some divs with class name pattern a-<random>-c .
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You may find useful information Here.
for your case this might work
for matching the starting of selector string
this Finds all inputs with an attribute name that starts with ‘txt’ and puts text in them.
Finds all divs containing “new” and underlines them.
Finds all inputs with an attribute name that ends with ‘address’ and puts text in them.
Combination of these may be helpful to you see if it helps