+ 1
DOM issue, I guess ?!
I created a webpage to convert an RGB color to hex and vice versa .. js code works I'm kinda sure of that, ot was a challenge in the first place and I finished it (only js codes).. but when created this page it doesn't for some reason.. any help would be appreciated https://code.sololearn.com/W4wue1bYM26h/?ref=app https://code.sololearn.com/W4wue1bYM26h/?ref=app
3 Respostas
+ 3
var result = document.querySelector('#res').innerHTML; <-- This is your problem
The variable result is a string instead of the HTMLHEADING object you need to display results of the toHEX() and toRGB() functions.
var result = document.querySelector('#res');
result.innerText or textContent
+ 2
Ali Kh
It is the small problems that bite us in the butt most of the time.😉
I'm glad I could help.
+ 1
Thank you a lot.. all is clear now😃, previously I stored the element 'text' in the variable.. so no change was done on the element itself.
A small issue, yet made the whole code fail😬
Again, thanks for your help 🙏