object doesn't support this property or method error

D

Drew

content = frames["iAnnoun"].document.getElementById("table").innerHTML;
tdtags = content.getElementsbyTagName("TD");


its the line tdtags = content.getElementsbyTagName that causes the
error. how can i get this to work?
 
M

Martin Honnen

Drew said:
content = frames["iAnnoun"].document.getElementById("table").innerHTML;

innerHTML gives you a string.
tdtags = content.getElementsbyTagName("TD");

Strings do not have a method getElementsByTagName, only document nodes
and element nodes have that.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,901
Latest member
Noble71S45

Latest Threads

Top