https://github.com/thecodejack/jquery-html5-fullscreen
Jquery Plugin to make DOM element viewed in FullScreen
https://github.com/thecodejack/jquery-html5-fullscreen
Last synced: about 1 year ago
JSON representation
Jquery Plugin to make DOM element viewed in FullScreen
- Host: GitHub
- URL: https://github.com/thecodejack/jquery-html5-fullscreen
- Owner: thecodejack
- Created: 2013-01-23T18:39:43.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-02-05T17:21:47.000Z (over 13 years ago)
- Last Synced: 2025-02-14T02:54:56.746Z (over 1 year ago)
- Language: JavaScript
- Size: 782 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
JQUERY HTML5 FULLSCREEN PLUGIN
===============================
With this plugin you can make any DOM element to fullscreen by binding to any event.
Can make a DOM element fullscreen in two steps.
1)Load the plugin to HTML Page .Create a variable by calling the plugin and passing the DOM as Jquery Selector.
```javascript
$(document).ready(function(){
var fullscreenplugin = new $.fullscreen($('#imageFS'));
});
```
2) Pass the `fullscreenplugin.enableFullScreen` as a callback to any event.
```javascript
$('#fsbutton').click(fullscreenplugin.enableFullScreen);
```
DEMO LINK
---------
http://thecodejack.github.com/jquery-html5-fullscreen/demo/Test1.html
DEVELOPER
---------
Srikanth
ISSUES and Improvements
-----------------------
Can suggest the issues and improvements.