A
Axelar
Hi 
I wonder how to modify two div with only one click.
for example, there's a <div id="a">text</div> and a <div id="b">.
I've made a link that call a function which modify the content of div
with id a using :
if(xhr.readyState == 4){
document.getElementById('a').innerHTML = xhr.responseText;
}
but i really don't know how to modify both div a AND div b !
Thx a lot
I wonder how to modify two div with only one click.
for example, there's a <div id="a">text</div> and a <div id="b">.
I've made a link that call a function which modify the content of div
with id a using :
if(xhr.readyState == 4){
document.getElementById('a').innerHTML = xhr.responseText;
}
but i really don't know how to modify both div a AND div b !
Thx a lot