I want to find all the elements on my page that have a 'name' attribute containing 'x' or 'y' and add a certain class to those elements.
So, the logic I'm looking to apply is
If anything has 'x' or 'y' in the name attribute then add .yepItHasXorY
It seems like a simple thing. I understand how to search based on an ID or Class but not the name attribute...