Im trying to do it with JavaScript, using AJAX calls, something like that:
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
var response = xmlhttp.responseText; //if you need to do something with the returned value
}
}
xmlhttp.open("GET","http://192.168.55.109/TV1",true);
xmlhttp.send();
but isn't working.