Or use jQuery and do
$('#myDiv').find('#elemInMyDiv');
Or, if elemInMyDiv is a direct child of myDiv:
$('#myDiv > #elemInMyDiv');
-----Original Message-----
From: web400-bounces@xxxxxxxxxxxx [mailto:web400-bounces@xxxxxxxxxxxx] On Behalf Of Matt Lavinder
Sent: 09 June 2011 20:10
To: Web Enabling the AS400 / iSeries
Subject: Re: [WEB400] javascript - use getElementById to get element within a div
The following should work fine:
document.getElementById('elemInMyDiv');
If you this is an issue because you are creating elements with duplicate ID
names, it is allowed but considered bad practice. I would recommend adding
a counter of something similar so that all the "id" attributes are unique.
When you want to group elements together using an attribute, use "class" or
"name" - keep ID unique and your life will be a lot easier.
That all said, if you want to dig out a specific element within a DIV, it
can be done but it is a little extra work. You would have to loop through
all the elements until you find the one with a matching ID. Having a unique
ID for each element is usually a much simpler way of handling things.
On Thu, Jun 9, 2011 at 2:35 PM, Hockchai Lim
<lim.hock-chai@xxxxxxxxxxxxxxx>wrote:
Do anyone know how I can use js to get DOM element within a <div>. I tried
below but it does not work:
var myDiv = document.getElementById('myDiv');
alert(myDiv.getElementById('elemInMyDiv').value);
--
This is the Web Enabling the AS400 / iSeries (WEB400) mailing list
To post a message email: WEB400@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/web400.
--
This is the Web Enabling the AS400 / iSeries (WEB400) mailing list
To post a message email: WEB400@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at
http://archive.midrange.com/web400.
NOTICE: The information in this electronic mail transmission is intended by CoralTree Systems Ltd for the use of the named individuals or entity to which it is directed and may contain information that is privileged or otherwise confidential. If you have received this electronic mail transmission in error, please delete it from your system without copying or forwarding it, and notify the sender of the error by reply email or by telephone, so that the sender's address records can be corrected.
--------------------------------------------------------------------------------
CoralTree Systems Limited
25 Barnes Wallis Road
Segensworth East, Fareham
PO15 5TT
Company Registration Number 5021022.
Registered Office:
12-14 Carlton Place
Southampton, UK
SO15 2EA
VAT Registration Number 834 1020 74.
As an Amazon Associate we earn from qualifying purchases.