1
I have a blog and the attribution of this blog is incorrect and not even changing it works. I wanted to use a script that changes innerHTML within this DIV but without changing other content.
Example:
function setAttrib(nameof, content){
document.getElementById(nameof).innerHTML=content;
}
But the problem is that within this DIV there are other items within it that I cannot change and the only item I want to change would be another DIV without ID but has Classname, but as it is a Blog has several Classname of the same type.
Observe:
Note that in the image the Attribution1 ID is the item I want to change but has other items within this DIV.
yes the position of the element is fixed!
– FRNathan13