Greasy Fork is available in English.

Discussões » Criação de Solicitações

How to write user script to replace inner html

§
Publicado: 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

§
Publicado: 01/02/2022

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

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

You might actually be talking about innerText instead of innerHTML.

§
Publicado: 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

§
Publicado: 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.

§
Publicado: 08/08/2022

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

Publicar resposta

Faça o login para publicar uma resposta.