Assume I have the following HTML structure:
When the users clicks manually with the mouse on "click here" text then something is expanded on webpage.
How do I simulate a click on ALL/EACH (!) such items on a webpage?
The items differ only in the id number (in the first element above = 8888).
I need something like a wildcard mechanism.
The following solutions do not work:
$('a#id="ccc*"').click();
or
$('a[id="ccc*"]').click();
or
$('id="ccc*"').click();
How else does that work?
Peter