Skip input field after click(Function() {

Asked

Viewed 99 times

-1

Someone knows how to jump to the next field (input) using the function within the event:

click(function() {

It cannot be by ID because I am using inside a div that uses jquery’s CLONE function. Thank you

  • Can you elaborate more your question? Grateful!

  • Hello @Nottherealhemingway I need to jump to the next input field after the user selects the ajax function that will be done in the click(Function() {

1 answer

0

I got it. I used the . Focus() function and it worked... Valeuu!

  • In fact the onfocus does not jump to the next field, this event fires when the field in question receives focus, to jump to a certain field you direct the focus, to the field you want through the function focus()... In my view they are different things..

  • Exactly, I put Focus() in the next field and I got.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.