TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Automatically Move Cursor to Next Field When TextBox is Full
Pintoo Yadav
Aug 13
2015
Code
2
k
0
1
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
>
<
title
>
JavaScript to automatically move from one field to another field
</
title
>
<
script
type
=
"text/javascript"
>
function movetoNext(current, nextFieldID) {
if (current.value.length
>
= current.maxLength) {
document.getElementById(nextFieldID).focus();
}
}
</
script
>
</
head
>
<
body
>
<
b
>
Enter your Text:
</
b
>
<
input
type
=
"text"
id
=
"first"
size
=
"4"
onkeyup
=
"movetoNext(this, 'second')"
maxlength
=
"3"
/>
<
input
type
=
"text"
id
=
"second"
size
=
"4"
onkeyup
=
"movetoNext(this, 'third')"
maxlength
=
"3"
/>
<
input
type
=
"text"
id
=
"third"
size
=
"5"
maxlength
=
"4"
/>
</
body
>
</
html
>
JavaScript
Move cursor to next field
Mouse Cursoer in Javascript