Use this snippet to add drop shadows to elements for Mozilla, Webkit, and browsers that support CSS3:
-moz-box-shadow: 1px 2px 3px #666;
-webkit-box-shadow: 1px 2px 3px #666;
box-shadow: 1px 2px 3px #666;
/* box-shadow: X Y blur hex; */
Use this CSS to apply rounded corners to Mozilla, Webkit, and browsers that support CSS3:
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
Note to self: when installing XAMMP for development on your legacy apps, be sure to set PHP short tags in php.ini:
short_open_tag = On

This place feels like it’s from another time. And haunted.
Comments Off
Cursive L
Looping recursive
into helix
on horizon
Comments Off
Trying to manipulate the iframe from a jQuery script running inside the iframe. Here is how to get a handle on the iframe with jQuery when you have id attribute iframe-id-attribute set on the iframe:
var ifr = $( '#iframe-id-attribue', window.parent.document );
Comments Off