Purpose of the @ symbol in selectors

Purpose of the @ symbol in selectors


In an example I came across a selector put an @ symbol in front of an
attribute filter. What was the point of this?
For instance, say I wanted to select a form with a label in it:
$('form[@name=my_form] > label[@for=some_label]')
What would be the purpose of putting the @ symbol there?