i need help please, whay this code don't run ?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

i need help please, whay this code don't run ??

<!DOCTYPE html> <html lang="en"> <head> <title>javascript</title> </head> <body> <textarea id="demo"> </textarea> <input type="submit" onclick="myfunc()" value="sent"> <script> function myfunc(){ var mytext = document.getElementById("#demo"); alert(mytext.length); } </script> </body> </html>

11th Apr 2019, 5:12 PM
amir othmane
amir othmane - avatar
2 Answers
+ 4
And to add to what M. Watney said, you don't need the '#' when you call document.getElementById(), so instead of document.getElementById("#demo") call it like this document.getElementById("demo") And to display the textarea text length, use this alert(mytext.value.length) You missed the `value` attribute there.
11th Apr 2019, 5:38 PM
Ipang
+ 3
amir, it's because the JS part gets loaded before the html window and hence it cannot find the html element. Put your code inside a function which will be called once the html window gets loaded. window.onload =function () { //your JS code goes here }is And by the next time consider giving a link to your question rather than posting the entire code over here.
11th Apr 2019, 5:21 PM
Шащи Ранжан
Шащи Ранжан - avatar