/    Sign up×
Community /Pin to ProfileBookmark

Two forms and Javascript

Hello,
I have two forms (ex. form A and Form ? in a html page. I am using Javascript to focus on an element in form B using document.getElementById(“userName”).focus(). Earlier I did not have form A and it used to work fine but after the introduction of form A, it does not work. Any suggestions as to how to get this working. Thanks,
Sujatha

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@KorMay 04.2011 — I suspect you have given the second element the same id. That is illegal in HTML/CSS/JavaScript. The id must be unique on document. Change the ids to make them unique. Or use names :
<i>
</i>document.forms['formname'].elements['elementname'].focus()

[B]id[/B] and [B]name[/B] are different tokens.
Copy linkTweet thisAlerts:
@rkharikrishnanMay 04.2011 — you can get the form elelment by

var oForm = document.forms["FromA"];

then the elements by

oForm.elements["userName"].focus();
×

Success!

Help @forumdata spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.2,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,
)...