A jquery plugin that renders iframes for different servers. Very useful for eye-testing after deployments.
// Initialize the hit-all
$('.some-div').hitAll({
servers: ['server1.your-site.com', 'server2.your-site.com'],
path: '/path/to/test',
protocol: 'https' // optional. default http
});
// Update the paths
$('.some-div').hitAll({
path: '/path/to/new/test'
});
// Change the servers
$('.some-div').hitAll({
servers: ['new-server.your-site.com']
});