Hello all, I am trying to get a different div to display based on the value in a textfield. So, right now, I have this:
<textarea id="characters">100</textarea>
<div id="upto100">
This is content up to 100 characters
</div>
<div id="upto200">
This is content up to 200 characters
</div>
<div id="upto300">
This is content up to 300 characters
</div>
I think this is a mix of Javascript and Jquery. Any thoughts and help?