Hi,
For my JavaScript at http://www.payitforwardfriends.com/converter.html I want it so that when you press calculate the result is all in lower-case. In other words, I want it to write the substance in lower-case in the result but not in the list of options.
How do I do this?
Thanks!
Try...
if (substancetext != ""){ document.getElementById('substancemessage').innerHTML = substancetext.toLowerCase(); }
I changed it but it doesn't seem to work.