Live update

Status
This thread has been locked.

Issyboi

Java Dev
Supreme
Feedback score
0
Posts
32
Reactions
12
Resources
0
Hi, has anyone any experience with javascript? I just wanted a little script for my website.
I want the website to query my minecraft server(I already have a minecraft query api) each 10 seconds and update the player count on the website without refreshing. I have seen this on some websites, so dont come here and tell me its not possible :p
Website: http://bluelapiz.com

Regards
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

tiehm

Developer
Supreme
Feedback score
7
Posts
687
Reactions
455
Resources
0
Hey this is simply done with
Code:
setInterval
!

Here is an example:
Code:
setInterval(function () { }, 3000);
 
Status
This thread has been locked.
Top