views:

222

answers:

2

I am trying to get all objects but it doesn't work.

var tmp = document.evaluate("//tr", document, null, XPathResult.ANY_TYPE, null);

tmp.iterateNext returns me null;

+1  A: 

If you are working in IE, then you should know that document.evaluate does not exist there (see this similar question and the last couple of paragraphs here).

Why not just document.getElementsByTagName("tr");?

Justin Johnson
A: 

In my opinion, using an existing JS libraries such as JQuery is usually more reliable in cases like this.

msha