How do I make a div full screen?

You can use HTML5 Fullscreen API for this (which is the most suitable way i think). The fullscreen has to be triggered via a user event (click, keypress) otherwise it won’t work. Here is a button which makes the div fullscreen on click. And in fullscreen mode, the button click will exit fullscreen mode. $(‘#toggle_fullscreen’).on(‘click’, … Read more

JQuery, Flot, valuelabels, center

Plugins got you down? Just do it yourself, life it so much simpler then. This is the advantage of flot, compact code that get’s out of your way… Here’s how I would add those labels: // draw initial plot // notice no categories plugin either, why? // Because it’s easier to do it yourself… var … Read more