Im sure the solution is simple but I cant figure it out 🙁
I need to combine two jquery selectors in one selector:
$(this) + $('input[type=text]:first')
$(this) is e.g div#selected so the result should be:
$('div#selected input[type=text]:first').focus();
How to do?
Just use
.find():or set the context to
this: