Avance Zone

Find browser size

Find browser size

Here is the Best and simple way to find the users browser size

The screen size and browser size are different…
A perfect web developer has to fit his developed website to the use rs bowser and not his screen resolution
here is the script to find the users screen resolution .

Javascript to find browser size Just copy and paste in .html file

<script type="text/javascript">
function alertSize() {
	var myWidth = 0, myHeight = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		myWidth = window.innerWidth;
                myHeight = window.innerHeight;
	} else if( document.documentElement &&
                 ( document.documentElement.clientWidth ||
                   document.documentElement.clientHeight ) ) {
		myWidth = document.documentElement.clientWidth;
                myHeight = document.documentElement.clientHeight;
	} else if( document.body && ( document.body.clientWidth ||
                   document.body.clientHeight ) ) {
		myWidth = document.body.clientWidth;
                myHeight = document.body.clientHeight;
	}
	window.alert( 'Width = ' + myWidth + ' and height = ' + myHeight );
}
</script>
<p>Test your screen size <a href="javascript:alertSize();">
Java script resolution</a></p>

Mozilla Firefox And Google chrome

Mozilla Firefox, Speed it up! Speed up Mozilla FireFox

1. Type “about :config” in the adress field.
2. Set the value of network.http.pipelining to “true”.
3. Set the value of network.http.pipelining.maxrequests to “100″.
4. Set the value of network.http.proxy.pipelining to “true”
5. Set the value of nglayout.initialpaint.delay to “0″ (not availible in newer versions)


GOOGLE CHROME
Get google chrome Advance memory details
Type about:memory in Address bar…

Read My Entire Blog on Google chrome secrets

Avance Zone