Category Archives: Web Development

jQuery: Execute a callback once, after a class based animation completes

I was developing some web recently and ran into a jQuery problem that was new to me. I was using a class selector to fade a group of elements, and using a callback function which would fire after the fade was complete. Something like this:

[note color=#DDD] $('.myclass').fadeOut('fast', function() { […] Continue Reading
Posted in Googling for Answers, Web Development Tagged

Display All Errors and Warnings in PHP

I find myself googling this up waaaaaaay too often, but there’s nothing unusual about that. I usually put this at the top of my code during development.

[note color=”#DDD”] PHP error_reporting(E_ALL); ini_set('display_errors', '1'); 12 error_reporting(E_ALL);ini_set('display_errors', '1'); [/note]

Here’s another handy […] Continue Reading

Posted in Googling for Answers, Web Development Tagged ,

Getting this damn blog to look the way I wanted!

I don’t even know where to begin. First, finding a good theme to use as a starting point is HARD. Don’t let anyone tell ya different. Second, tweaking that theme (the right way) is not always easy.

After hours of theme searching I finally came across Grey Opaque by H.-Peter […] Continue Reading

Posted in Web Development Tagged ,

Missing Admin Bar in WordPress

I just installed Wordpress and after installing a theme I liked I noticed that it was missing the Admin Bar on the public portion of the site. A quick google search turned up the answer in the Wordpress Support Forums:
Posted in Googling for Answers, Web Development Tagged