Using Chrome Development Tools
jQuery('.proejct-text-field')
gives me four instances of HTML Elements:
<div class=".proejct-text-field ...">...<>
<div class=".proejct-text-field ...">...<>
<div class=".proejct-text-field ...">...<>
<div class=".proejct-text-field ...">...<>
Trying the following doesn't return any Elements.
jQuery('.proejct-text-field:nth-of-type(1)')
As for my understanding the first Element should be returned. I just use jQuery in order to find the right selector for my purposes and to take them into my css file. So How can I select the first Elment of those Divs. Btw: They are not wrapped into a certain parent element. So any child methods won't work. Further the number of divs is variable.