Return to Snippet

Revision: 55983
at March 3, 2012 02:25 by raz


Initial Code
if($.support.fullscreen){
    $('#wraperouter').append('<a href="#" id="fsButton">fullscreen</a>')
    $('#fsButton').click(function(e){
        // Use the plugin
        $('#wraperouter').fullScreen();
        e.preventDefault();
    });
  }

Initial URL
www.raz.rs

Initial Description
Include https://github.com/martinaglv/jQuery-FullScreen
Then add following and replace selectors with yours.

Initial Title
Fullscreen html

Initial Tags


Initial Language
jQuery