Alpha Transparency for PNG’s in IE6

Alpha Transparency for PNG’s in IE6

May 05

“Internet Explorer 6, I hate you. Alas, I must work to correct you.” – Craig McRae If you need to use a 24 bit PNG in IE6 and want it to work, you’re going to need a little help. First, start by creating a new stylesheet just for IE6, call it ‘f**kYouIE6.css’ or whatever you’d like. Then call the css with the following code after all of your other CSS...

encodeURIComponent (PHP Motion)

encodeURIComponent (PHP Motion)

Feb 17

I was having some trouble with comments in phpmotion. Turns out the genius developers over there don’t understand that not all users of the internet forget how to punctuate. After burrowing deep into the code, I found where the key value pair was being created for the POST. At this point all I needed to do was convert the special characters in the string. 204. url += chiave + "=" +...

Forms in IE vs FF (and the rest)

Forms in IE vs FF (and the rest)

Feb 14

If you’re trying to prevent the default action of a form to do some JavaScript validation, or for whatever reason, you may have to make some adjustments for Internet Explorer. The key here is capturing the event and telling it what you want, and not letting the browsers default actions take over. The button on your form should look something like this: <button id="submit"...