Comment sélectionner tous les éléments avec une valeur ARIA particulière en utilisant jQuery?

Donné que j'ai un exemple de page qui ressemble à ceci:

<!DOCTYPE html>
<html>
<body>

<h1 aria-controls="name1">heading</h1>

<p aria-controls="name2">paragraph</p>

<span aria-controls="name1">span</span>

<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</body>
</html>

Comment puis-je utiliser jQuery pour sélectionner le (2) éléments avec leur aria-controls attribut name1? (en ignorant le fait que les types d'éléments sont différents).

Merci!

source d'informationauteur SharkLaser