How to get all elements with this multi value attribute?

How to get all elements with this multi value attribute?

Assume I have a web page with multiple instances of elements that have (among others) the following CSS definition:

  1. #........... { .....
  2. border: 1px dashed #ddd;
  3. ..... }

How can address all these elements with jQuery?


The following does not work:


$("[border: 1px dashed #ddd]")


How else does that work?

Peter