The check browser version plugin
-Latest version is 1.0.0
-You can use default view of this plugin look like so (See under) or create himself warning block
-Warning!
-You use oldest version of a browser. It may be a reason of incorrect work and view of a website.
-For comfortable work, please download latest version of a browser convenient for you from official website.
-Please read ourdocumentation.
-For begin you need check - you use jquery or not use? If you not add jquery plugin - you need do it
-And inicialize plugin
-
-
-$(document).ready(function () {
- $('body').checkBrowser();
-});
-
-
-
- All supported params:
- -
-
-$(document).ready(function () {
- $('body').checkBrowser({
- once: 'No',
- warningBoxName: '.old-browser-warning',
- closeBtnName: '#close-old-browser-warning',
- duration: 1200,
- easing: 'swing',
-
- browsers: {
- Firefox: 27,
- Chrome: 30,
- Opera: 15,
- IE: 10
- }
- });
-});
-
-
-
-
- In this option you can change amount of show
- -
-
-$('body').checkBrowser({
- once: 'No'
-});
-
-
-
-
-
-$('body').checkBrowser({
- warningBoxName: '.old-browser-warning'
-});
-
-
-
-
-
-$('body').checkBrowser({
- closeBtnName: '#close-old-browser-warning'
-});
-
-
-
-
-
-$('body').checkBrowser({
- duration: 1200
-});
-
-
-
-
-
-$('body').checkBrowser({
- easing: 'swing'
-});
-
-
-
-
-
-$('body').checkBrowser({
- browsers: {
- Firefox: 27,
- Chrome: 30,
- Opera: 15,
- IE: 10
- }
-});
-
-
-