I am using Flot to graph some of my data and I was thinking it would be great to make this graph appear fullscreen (occupy full space on the monitor) upon clicking on a butt
Use document height if you want to show it beyond the visible area of browser(scrollable area).
CSS Portion
#foo { position:absolute; top:0; left:0; }
JQuery Portion
$(document).ready(function() { $('#foo').css({ width: $(document).width(), height: $(document).height() }); });