I have the following script:
var reading = localStorage.getItem('_reading');
Appery("i_reading").text(reading);
Appery("b_add").text(reading);
where:
i_reading is an input box
b_add is a button
the script correctly updates the 'b_add' text to the value of 'reading' but it does not update 'i_reading' at all.
Am I missing something?