Current Lua downloadable firmware will be posted here

User avatar
By lethe
#36255 The reload is actually triggered by the "document.location.href=..." in the javascript code. If you want to set values without reloading the page, you need more sophisticated javascript code using AJAX (XMLHttpRequest) or websockets for example.
User avatar
By Trickuncle
#36257 @lethe -thanks! I take it that it's the href tag then as the buttons also invoke a page reload but they have no javascript attached to them.

A quick glance at w3schools.com shows this:
The XMLHttpRequest object is a developers dream, because you can:

Update a web page without reloading the page

and that is exactly what I want to do. Again, thanks for the pointer!!!

Note to any others who have not seen http://www.w3schools.com - I've been practically living at that site for the last two weeks. They have excellent explanations of html, javascript, DOM, css, and more, including easy to use editable examples.