Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 08-08-2006, 05:55 PM   PM User | #1
pilau
New Coder

 
Join Date: Aug 2006
Posts: 26
Thanks: 0
Thanked 0 Times in 0 Posts
pilau is an unknown quantity at this point
Getting a property's value

Hi, I was wondering if I could get a property's value within a code like this:
Code:
        for (property in object)
        {
            if (property == 'src')
            {
                // get the value here
            }
        }
Thanks
pilau is offline   Reply With Quote
Old 08-08-2006, 06:31 PM   PM User | #2
jkd
Senior Coder

 
jkd's Avatar
 
Join Date: May 2002
Location: metro DC
Posts: 3,163
Thanks: 1
Thanked 18 Times in 18 Posts
jkd will become famous soon enough
In Javascript, someObject.property is equivalent in every way to someObject["property"]. Thus you can access the value in your particular case as object[property].
__________________
jasonkarldavis.com
jkd is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 12:40 AM.


Advertisement
Log in to turn off these ads.