Uncaught TypeError | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Uncaught TypeError

Why am I getting a reference error for the width being undefined? Click the button in this code to get the error. I have no idea why it's happening. https://code.sololearn.com/W7StKWhLd5dH

23rd Oct 2017, 5:41 PM
Zeke Williams
Zeke Williams - avatar
2 Answers
+ 5
Because you get a JQuery object in your 'bar' variable, not directly a DOM element: function fillBar() { var bar = $("#bar1"); var w = 0; var x = setInterval(fill, 10); function fill() { if (w >= 100) { clearInterval(x); } else { w += 0.2; // bar.style.width = w + '%'; bar.css('width',w + '%'); } } } The other fix alternative will be to not use JQuery at all: function fillBar() { // var bar = $("#bar1"); var bar = document.querySelector("#bar1"); var w = 0; var x = setInterval(fill, 10); function fill() { if (w >= 100) { clearInterval(x); } else { w += 0.2; bar.style.width = w + '%'; } } }
23rd Oct 2017, 6:22 PM
visph
visph - avatar
+ 2
Ahhh, see, I'm still learning JQuery. I forgot about this detail! Thank you for the answer - I appreciate it
23rd Oct 2017, 7:07 PM
Zeke Williams
Zeke Williams - avatar