Hi
I got 3 web machines, and on admin page, on each of that machines, i want to have informations from all of them, showed in 3 same sections like: http://jqueryfordesigners.com/demo/tabs.html (3 times same, but from other machines).
How to modify that script, to show info from other machines ?
$(function () {
var tabContainers = $('div.tabs > div');
tabContainers.hide().filter(':first').show();
$('div.tabs ul.tabNavigation a').click(function () {
tabContainers.hide();
tabContainers.filter(this.hash).show();
$('div.tabs ul.tabNavigation a').removeClass('selected');
$(this).addClass('selected');
return false;
}).filter(':first').click();
});
When im cliking on tab, i want to generate url, which will be send to other machine and reply should be shown in that tab.