Warning: gzinflate() [function.gzinflate]: data error in /home/boozkerc/public_html/kneedeepincode/wp-includes/http.php on line 1787

Why? Well, just like a mentally handicapped kid, it doesn’t like being rushed or pushed too hard. I found out, after hours of debugging, it had to do with have too many $(function(){ });. This was mostly due to a past programmer using them obsessively. I changed the code I wanted to run to being loaded when the window loaded like this:
(more…)
Warning: gzinflate() [function.gzinflate]: data error in /home/boozkerc/public_html/kneedeepincode/wp-includes/http.php on line 1787

Here are my favorite ways to debug live and non live sites. The first is great to put in all of your sites from the very beginning so if you ever do contract some kind of bug, you can easily open any file and just use the class. The 2nd is better if used on a non live site or with #1. It will let you see any or all elements either on load or while hovering your HTML elements. Lastly, I have a very short script that you can view generated source code without a plugin and view it in a stylish way as well.
(more…)
Warning: gzinflate() [function.gzinflate]: data error in /home/boozkerc/public_html/kneedeepincode/wp-includes/http.php on line 1787

dynoBox was supposed to be just a copy and paste bit of code, but then I decided, what the hell, might as well make it a full blown plugin. Even after that I thought it was only going to have 2 options, selectAll and value. While building it I kept on thinking, shit, what if…
(more…)
Warning: gzinflate() [function.gzinflate]: data error in /home/boozkerc/public_html/kneedeepincode/wp-includes/http.php on line 1787

Here is an easy way to make equal and scalable columns with jQuery. Tested in IE7, Safari 4, and Firefox 3. Just put your left side selector for the first argument and the right side in the second. Look at my code in the window.load function as an example.
(more…)
Warning: gzinflate() [function.gzinflate]: data error in /home/boozkerc/public_html/kneedeepincode/wp-includes/http.php on line 1787

First off, I want to say that I take no credit for this idea. This script is heavily based on Jay Salvat script which can be viewed on his blog.
My jQuery script is similar, but has a minor fix for IE7, smaller size and includes built in debugging just by setting the debug var to true. This will alert you of the browser, engine, and the OS of your user. Not only can it be helpful to you, but also clients. I’ve had to deal with more than one client who didn’t know their browser or browser version.
(more…)