May 3rd, 2009 |
by admin |
published in
technology, Web Development
If you are looking for a Cross Browser Compatible CSS Opacity code, you need look no further. The following provides 100% opacity (which is the same as 0% transparency.) 1 2 3 4 5 6 7 8 9 10 Body { …your body css… -moz-opacity: 1.0 !important; -webkit-opacity: 1.0!important; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important; filter: alpha(opacity=100) !important; opacity: […]
December 23rd, 2008 |
by admin |
published in
Web Development
Here is a snippet of vbscript I use in ASP and/or VBS applications where I need a select case statement for a range of values for each case. There isn’t too much documentation online about this, and it’s a bit of a hack, but this will do the trick. 1 2 3 4 5 6 […]
September 4th, 2008 |
by admin |
published in
Internet
I’m building a directory of sorts of YouTube extension plugins for wordpress. I’ve only had time to get it started, but if anyone has any great scripts, plugins, or extensions for implementing the YouTube API into a wordpress extension, please drop me a comment and I’ll be happy to add it.