Jump to content

Document.getelementbyid("x") Has No Properties


urwa

Recommended Posts

When I open it in Firefox and look at the error console it shows a property error. When I open it in internet explorer is says object expected. there should be more fields filled out than the first two.Thank you

Link to comment
Share on other sites

When document.getElementById('x') says that it "has no properties", it's a really good indication that there aren't any elements in your document that have an id of 'x'.This is the error I get in Firefox:

document.getElementById("Manager") is nullhttp://urwa.org/stewardship/plantdetails.a...=Callery%20pearLine 39
Looking through your HTML, I see that you have a span in there with an id of "manager", not "Manager". You might try modifying either the id of that span to be "Manager" or the javascript to be document.getElementById("manager").
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...