i need to retrieve information regarding a ventrilo server’s status. ventrilo’s website offers a service to retrieve information about a server. for example, this is the game arena ventrilo server: http://www.ventrilo.com/status.php?hostname=144.140.154.11&port=25000
i am trying to grab the part under “Channel and User info.”. but that table has no id and there are many other tables on the page. how can i go about doing this?
i also heard that some browsers do not allow you to load external content. how could i get around this?
In addition to Marc’s answer, you could use Yahoo’s YQL service to retrieve the table with the following query
You can then use the YQL result with jQuery to display the table on your website shown in the following demo.
Working Demo
http://jsbin.com/eveka (editable via http://jsbin.com/eveka/edit)
Full Source
JavaScript
HTML