Обговорення » Creation Requests

How to write user script to replace inner html

§
Опубліковано: 01.02.2022

My div id is ," my_age" and inner html property is "45"

So I want to change inner html as '56'

What are the java script code to write for tamper monkey....pls help me

§
Опубліковано: 01.02.2022

I think property can mean a lot of things, so you should be more specific.

document.querySelector("#my_age , .my_age").innerHTML = '56';

You might actually be talking about innerText instead of innerHTML.

§
Опубліковано: 20.03.2022

To briefly explain the differences, here's some code:

var div = document.createElement("div"); // <div></div>

div.innerText = "<h1>Hello</h1>"; // <div>"<h1>Hello</h1>"</div>
div.innerHTML = "<h1>Hello</h1>"; // <div><h1>"Hello"</h1></div>

And here's the result of the code:

<h1>Hello</h1>

Hello

§
Опубліковано: 23.03.2022

I think the above has already answered your question. But try the method that is described on the casinoshunter. It seems to me that he will be more working in the end.

Deleted user 821489
§
Опубліковано: 08.08.2022

var html = document.getElementsByTagName('html')[0];
// do something in html.TAG_NAME
html.innerHTML = html.innerHTML;

Опублікувати відповідь

Sign in to post a reply.