@File: /surebert/css/styleSheet.js
@Description: A constructor used to load additional CSS styleSheets into the page. Each styleSheet has a hide and show method. The stylesheet is hidden by default.
var mySheet= new sb.css.styleSheet('http://www.example.com/format.css');
@File: /surebert/css/styleSheet.js
@Description: All sb.css.styleSheet.prototype examples below assume a sb.css.styleSheet instance created liek this
var mySheet= new sb.css.styleSheet('http://www.example.com/format.css');
@File: /surebert/css/styleSheet.js
@Description: Disables the stylesheet
mySheet.hide();
@File: /surebert/css/styleSheet.js
@Description: Enables the stylesheet
mySheet.show();
@File: /surebert/css/styleSheet.js
@Description: Toggles the display stylesheet
mySheet.toggle();
@File: /surebert/css/styleSheet.js
@Description: A collection of all stylesheets added as sb.css.styleSheet instances. Can show or hide all.
@File: /surebert/css/styleSheet.js
@Description: Hides all stylesheets added as sb.css.styleSheet instances
sb.css.styleSheets.hide();
@File: /surebert/css/styleSheet.js
@Description: Shows all stylesheets added as sb.css.styleSheet instances
sb.css.styleSheets.show();