jQuery Show and Tell
January 8th, 2009
This jQuery code will slide up a hidden up on hover() and slide down the same on blur(). This script uses the jQuery UI visual control library.
CSS Transparency
January 8th, 2009
Found this great article by Chris Coyier covering tranparency for all browsers. Huge time saver, thanks Chris!!!
CSS Transparency Settings for All Browsers
Eclipse PDT (PHP Development Tools) 2.0 Released
January 7th, 2009
PDT is an open source development tool that provides basic PHP code editing capabilities. It is also the foundation for the professional-grade Zend Studio for Eclipse.
The new 2.0 release is fully compliant with Eclipse standards, enabling PHP developers to leverage a wide variety of Eclipse projects, such as Web Tools Project (WTP) and Dynamic Language [...]
SlideShowPro and Wordpress
January 6th, 2009
I ran into an issue with images not loading with SlideShowPro and Wordpress. I would get the gray frame but no controls or images from the gallery. To fix the issue I did the following.
Update SlideShowPro
Open the SlideShowPro .fla you are working with in Flash.
Select to Window/Component Inspector or Shift + F7.
Scroll to the bottom [...]
Dynamic Javascript Variables
January 4th, 2009
To create dynamic variables in JavaScript use the eval() function. Of course eval() can be for other dynamic JavaScript creation as well.
function dynamic(id)
{
// Create dynamic variable and set the value
eval("var test_" + id + " = \"value goes here\";");
// Return the value
return eval("test_" + id);
}
// Call function
var test = dynamic(123);
// Display the value
document.write(test);
Demo
View a demo [...]









