I am after documentation on using wildcard or regular expressions (not sure on the exact terminology) with a jQuery selector.
I have looked for this myself but have
You can use the filter function to apply more complicated regex matching.
Here's an example which would just match the first three divs:
$('div') .filter(function() { return this.id.match(/abc+d/); }) .html("Matched!");
Not matched Not matched Not matched Not matched