Posts

Showing posts from January 11, 2010

Popup Window

Joomla! 1.5.15 Released - Get It While It's Hot!

The Joomla! Project announced the release of Joomla! 1.5.15 today . This release contains a couple of security fixes, so be sure and upgrade as soon as possible.

Get the browser width and height in internet explorer

<script type=”text/javascript”> w = 0; h = 0; w = document.documentElement.clientWidth; h = document.documentElement.clientHeight; alert("w: " + w + ", h: " + h); </script>