i'm having a bug on firefox 3.6 using this function
function GetRefreshedResults(response)
{
var splitted = response.value.split("|");
var panel = document.getElementById('my-glider');
var anchors = panel.getElementsByTagName('a');
for (var i=0; i<anchors.length; i++)
{
anchors[i].innerHTML=splitted[i];
}
}
which ads in DOM anchors like "< a xmlns="">
I'm now trying to use this instead:
function GetRefreshedResults(response)
{
var splitted = response.value.split("|");
var panel = document.getElementById('my-glider');
var anchors = panel.getElementsByTagName('a');
for (var i=0; i<anchors.length; i++)
{
anchors[i].empty();
anchors[i].appendChild(splitted[i]);
// anchors[i].innerHTML=splitted[i];
}
}
but i get the following error in appendChild :
Uncaught Error: NOT_FOUND_ERR: DOM Exception 8
i don't understand why it's not working. can anyone help me ? thanks
EDIT: Example:
splitted[0] contains :
"<div class="var">Visits</div><div class="percent-zero">0%</div><div class="val">0<div class="val-alt">Unique Visits: 0</div></div>"
i want to update 8 anchors with new content, contained in splitted[0], splitted[1]...splitted[7]
i'm having a bug on firefox 3.6 using this function
function GetRefreshedResults(response)
{
var splitted = response.value.split("|");
var panel = document.getElementById('my-glider');
var anchors = panel.getElementsByTagName('a');
for (var i=0; i<anchors.length; i++)
{
anchors[i].innerHTML=splitted[i];
}
}
which ads in DOM anchors like "< a xmlns="http://www.w3/1999/xhtml">
I'm now trying to use this instead:
function GetRefreshedResults(response)
{
var splitted = response.value.split("|");
var panel = document.getElementById('my-glider');
var anchors = panel.getElementsByTagName('a');
for (var i=0; i<anchors.length; i++)
{
anchors[i].empty();
anchors[i].appendChild(splitted[i]);
// anchors[i].innerHTML=splitted[i];
}
}
but i get the following error in appendChild :
Uncaught Error: NOT_FOUND_ERR: DOM Exception 8
i don't understand why it's not working. can anyone help me ? thanks
EDIT: Example:
splitted[0] contains :
"<div class="var">Visits</div><div class="percent-zero">0%</div><div class="val">0<div class="val-alt">Unique Visits: 0</div></div>"
i want to update 8 anchors with new content, contained in splitted[0], splitted[1]...splitted[7]
Share Improve this question edited Aug 12, 2011 at 15:01 Dan Dinu asked Aug 12, 2011 at 14:40 Dan DinuDan Dinu 33.5k25 gold badges83 silver badges119 bronze badges 6-
What exactly does the value of
response
look like? – FishBasketGordo Commented Aug 12, 2011 at 14:43 -
@Dan -- what is in
response
when you tried it? can you make a demo on jsfiddle ? – Naftali Commented Aug 12, 2011 at 14:44 - Is it really okay to use the index variable "i" which loops over array anchors to select an array element in array "splitted"? – Mörre Commented Aug 12, 2011 at 14:45
-
You have to provide an example for
splitted
. I assume that the HTML it contains is not correct.innerHTML
should work. – Felix Kling Commented Aug 12, 2011 at 14:51 - @FelixKling splitted[0] = "<div 1> <div 2> text </div></div>". I did this thinking that innerHTML will work on all browsers. – Dan Dinu Commented Aug 12, 2011 at 14:53
2 Answers
Reset to default 4splitted[i]
is the problem. appendChild
appends a DOM-element to an existing DOM-element, but it looks like you ar trying to append a string value. If you want to use appendChild
, either create a container element and use innerHTML
for that to insert the string, or just use innerHTML
. It is not a bug that you can't append a string as DOM-element, I'd say. See also the MDN-page on appendChild.
response.value.split("|");
Indicates to me that you are passing response
as a string. appendChild only works with elements. You can't append a child to a flat string.