I haven't used js much since the 90s, so please excuse the simple question. That said, I'll even further simplify the example for this topic:
Let's assume that I have a three-column table. In the left column will be an input for degrees F. If a user enters a number and clicks a submit button, it fills in a field in the right column with the temperature converted to C.
The catch is that if the final degrees C is 0 or less, display image1 in the center column. If between 1 and 99, image2. 100 or above, image3.
How would I get that image displayed? Can I do this with relative ease without refreshing the page and losing the form fields?
Let's assume that I have a three-column table. In the left column will be an input for degrees F. If a user enters a number and clicks a submit button, it fills in a field in the right column with the temperature converted to C.
The catch is that if the final degrees C is 0 or less, display image1 in the center column. If between 1 and 99, image2. 100 or above, image3.
How would I get that image displayed? Can I do this with relative ease without refreshing the page and losing the form fields?