Results 1 to 3 of 3
Can someong advise on what this Error message refers to and how to fix ?
Thanks.
tdmint....
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 10-04-2009 #1Just Joined!
- Join Date
- Oct 2009
- Posts
- 2
Error:getElmentByld('lgpd') is null
Can someong advise on what this Error message refers to and how to fix ?
Thanks.
tdmint.
- 10-08-2009 #2Just Joined!
- Join Date
- Jan 2007
- Location
- Tamil Nadu, India
- Posts
- 18
Hi tdmint,
This means that there is no element with the ID as "lgpd".
In HTML, if you want to access any element by ID, you should have added the "id" attribute inside the tag.
For example:
<table id="lgpd">
</table>
Now I can access the table element by ID as getElementById("lgpd").
- 10-08-2009 #3Just Joined!
- Join Date
- Oct 2009
- Posts
- 2
Ok - thanks for that.
Regards.


Reply With Quote
