Archived Comments (locked)
|
|
The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008) |
|
|
Sounds like the xpath expressions aren't tight enough, i'll tighten things up. |
|
|
I had to modify the for loop on line 229 to get it working. Was throwing an error once it for past the end of the list. Working code:
for (i = 0; i < links.length; i++) {
var link = res.snapshotItem(i);
var p = links[i].split("|");
link.innerHTML = "";
// rest removed
|