I am getting an array of element in jquery with this $(".drawer-face")
If I use $(.drawer-face")[x] I get the x element with .drawer-face returned to me.
I want to be able to check attributes within the x element but I get
Uncaught TypeError: $(...)[6].attr is not a function
at <anonymous>:1:22 when I use $(".drawer-face").[6].attr("title") for example.