Reading variables on internet

Hello,

I can only do Reading A Variable " ON_OFF ," Do I need a reading Variable reset_52 NOT I can in my HTML page . How do paragraph Skip SEVERAL variables ?
Annex following code .

Thank you ,

FAbripaz

Thank you,

FAbripaz

So you want to access 2 cloud variables in that jQuery code ?

Most straight forward way is to nest the calls.

$.get("url1", function(data) {
    $.get("url2", function(data2) {
        //do stuff here
    });
});

An alternative could be to make one variable that is a json string and parse that.

Just for the future:
@fabripaz, if you post code or text excerpts, could you please avoid doing it as screenshots but add the actual text in a text block like

 ```text
 copy-paste your text here
or a code block like
```cpp
 ```cpp
 // copy-paste your code here

This also allows people to take your code and test it, if needed.
2 Likes