I've created a smaller view of a plot and that works fine but want to allow large view to open up in a new tab.\[code\]w = window.open();$(w.document.body).html('<div id="newchart" style="width: 247px; height: 300px"></div>');$.jqplot($("#newchart", w.document), [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]] );\[/code\]All I seem to get is a blank window (I see my div created but it's emtpy) There's are no JS errors/warnings in firebugs console eitherAny help is greatly appreciated!