find articles
-
My Recent Tweets
Error: Twitter did not respond. Please wait a few minutes and refresh this page.
-
-
Recent Posts
Recent Comments
Archives
- January 2013 (1)
- October 2012 (2)
- September 2012 (1)
- August 2012 (11)
- July 2012 (6)
Categories
- CSS (2)
- HTML5 (3)
- JavaScript (11)
- jQuery (7)
- More (5)
- Coldfusion (2)
- Developer Tools (1)
- IIS (1)
- Photoshop (1)
- Reviews (1)
- Movies (1)
Meta
-
Monthly Archives: July 2012
How to create a favicon in Photoshop
A favicon is the small image you see in the location bar or tab of your browser.
Using a favicon gives your site a more professional look and feel.
The required dimensions of a favicon are 16×16.
You can easily create a favicon in Photoshop using the following procedure:
(more…)
CSS Tips and Tricks
This will be an ongoing post of useful CSS tips and tricks.
They will vary from simple to advanced.
Feel free to contribute via a comment and I’ll add them to the list!
(more…)
JavaScript logging in console and window
I recently had the need to add logging to a real-time application using JavaScript.
Most developers usually throw in console.log or alerts during development. But if the consoles/alerts are not removed before code goes to production or a client, it can cause a big problem.
The following code example using console.warn provides this safely. If window.console or console.warn are not supported, no message is generated. But it does not cause the page to choke, like using a simple console.log.
(more…)
Handling multiple timers with JavaScript’s setInterval and jQuery
For a recent project I needed to create a slideshow with auto play capability. To achieve this I used JavaScript’s setInterval to rotate the slides every 15 seconds.
intervalId = window.setInterval("moveSlide()",15000);
To stop animation the timer needed to be cleared. The conventional way is:
window.clearInterval(intervalId);
All well and good if you only have one timer on a page.
(more…)