Mega Code Archive

 
Categories / JavaScript DHTML / Window Browser
 

Screen bufferDepth Example

<html> <head> <script language="JavaScript">     function function1() {         if (navigator.appName.indexOf("Microsoft") != -1) {             var m = screen.bufferDepth;             alert("The buffering for this screen is "+m);         } else {             alert("Netscape: no default for buffering depth");          }     }      function function2() {         screen.bufferDepth = -1;         var m = screen.bufferDepth;         alert("The buffering depth for this screen has been changed to "+m);      }  </script> </head> <body> <input type="button" value="No Buffering" onClick="function1();"> <input type="button" value="Same as Color Depth" onClick="function2();"> </body> </html>