.NET Tutorials, Forums, Interview Questions And Answers
HomeTutorialArticlesForumInterview QuestionCode SnippetsTechnology NewsFun Zone Poll Certification Search
Welcome :Guest
 
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!


Home >> Code Snippets >> Javascript >> Post New Resource Bookmark and Share

 Subscribe to Code Snippets

Get Current monitor settings using JavaScript

Posted By :Prasanti Prusty      Posted Date :29/01/2010   Points :10   Category: Javascript    URL: http://www.dotnetspark.com

Get Current monitor settings using JavaScript. You can get the current resolution setting of the client. This is very useful function to know.
    


<head runat="server">
    <title>Get Current monitor settings using JavaScript</title>
    <script type="text/javascript">
        document.write("<b><u>Current monitor settings</u></b><br />")
        document.write("<b>Color Depth : </b>" + window.screen.colorDepth + "<br />")
        document.write("<b>Screen Width * Height : </b>" + screen.width + "*" + screen.height + "<br />")
        document.write("<b>Available Screen Width * Height : </b>" + window.screen.availWidth + "*" + window.screen.availHeight + "<br />")
        document.write("<b>Available Colurs : </b>" + Math.pow (2, window.screen.colorDepth) +"<br />")
        document.write("<b>Is This Using an anti-aliasing fonts ? : </b>" + window.screen.fontSmoothingEnabled)
</script>
</head>

Featured Articles


Design Pattern Interview Questions Part (3)
Software Architecture Interview Questions Part 3 State Pattern, Stratergy pattern,Visitor pattern, Adapter and fly weight ... Read More
Software Architecture Interview Questions Part 4- Design Patterns
(A) Can you explain bridge pattern? (A) Can you explain composite pattern? (I) Can you explain decorator pattern ? (A) Can you explain Façade pattern? (A) Can you explain chain of responsibility ( COR)? (I) Can you explain proxy pattern? (B) Can you explain template pattern? ... Read More
UML Interview Question Part 1
(B) Define UML? (I) Can you explain use case diagrams? (I) Can you explain primary and secondary actors? (I) How does a simple use case look like? (I) Can you explain 'Extend' and 'Include' in use cases? (I) Can you explain class diagrams? (B) How do we represent private, public and protected in class diagrams? (I) what does associations in a class diagram mean? (I) Can you explain aggregation and composition in class diagrams? (A) What are composite structure diagram and reflexive association in class diagrams? ... Read More
Responses
No response found. Be the first to respond this post
Post Comment
You must Sign In To post reply
Find More code samples in C#, ASP.Net, Vb.Net and more Here

Hall of Fame    Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend