(5/n)
The "Spectrum" hidden tab is a little more complicated - the javascript isn't just grabbing some data from a .asp page and displaying it in a table, it's a whole application with buttons and fancy graphs. So I figured out a devtools javascript console incantation to get the main page to load it, ignoring the fact that it's marked as not visible:
```js
$('#maincontent').html('');
var loadPage = "advanced_spectrum.html"
$('#maincontent').load(loadPage, function(response,status){
if (status=="success") {
$("a").unbind("click");
}
});
$('#maincontent').fadeIn();
```
(This is basically ripped from /js/mainApp.js, lines 305-321)
#electronics #docsis #cablemodem