+ 8
How can i make a paragraph or text clear in javascript?
i set innerHTML of paragraph object to "" but it gives me an error that i can't give value to null type. why my paragraph object is null type? i also gave a value after i defined the object of paragraph but it still gives me the same error.
4 Antworten
+ 8
it's in one of my codes called omega. line 140. i have to put script in html because when i put the codes in js console it gives that error and won't work.
+ 7
thanks it was helpful!
+ 1
it is happen when you try to change element which not load yet. you need to change innerHTML after full load of page.
0
please attach your code.