Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8591397
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:31:10+00:00 2026-06-11T23:31:10+00:00

I am needing to distinguish between a pure JavaScript property on an object and

  • 0

I am needing to distinguish between a “pure” JavaScript property on an object and one that is a native property like innerHTML or style.

In Safari I can use Object.getOwnPropertyDescriptor() and check the configurable property (which is false for special properties), however this unfortunately doesn’t have the same results on Chrome or Firefox (which return that the properties are configurable).

Try this fiddle on different browsers to see the problem.

Is there a reliable way to determine if the property is a special internal property or not?

Update

I’ve noticed that Firefox actually returns undefined if you try to get the property descriptor of a native property, so that might work fine. That leaves Chrome, which unfortunately returns a property descriptor that looks exactly like a normal property.

For example, here’s the descriptor for innerHTML in Chrome:

{"value":"","writable":true,"enumerable":true,"configurable":true}

…and here for an empty string property called “test”:

{"value":"","writable":true,"enumerable":true,"configurable":true}

Exactly the same. 🙁

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T23:31:11+00:00Added an answer on June 11, 2026 at 11:31 pm

    You have to check if the property is defined on a newly created instance of the DOM element in question:

    'innerHTML' in (document.createElement('div')); //yes
    

    A function that tests this might look like:

    var test = function (elem, prop) {
        return prop in (typeof elem === 'string' ? document.createElement(elem) : elem)
    }
    
    console.log( test( 'div', 'innerHTML') );
    console.log( test( document.getElementsByTagName('body')[0], 'innerHTML') );
    console.log( test( document.getElementsByTagName('body')[0], 'monkey') );​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I often find myself needing reference to an object that is several objects away,
I'm needing to check the differences between two XMLs but not blindly, Given that
I'm just needing a simple bit of code for vb.net that will allow me
I am needing an inline image to position 1px below baseline. How can it
I'm needing to create a zip file containing documents that exist on the server.
I find myself needing to call back into the JVM from arbitrary native threads
I'm needing to fix a bug in an ASP.NET 2.0 app that uses ActiveReports
I always end up needing the user's location on most web projects that I
Needing some guidance about how to properly graph data that is very small and
needing some help. I have two divs that I need to fill with images.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.