Flash 8 Active Blur – Blur Behind a Transparent Object – Source Available **UPDATE: New Version here.
Category Archives: Programming
preloading images with css
HTML <div> <img src=”images/dog-over.gif” alt=”Dog” /> <img src=”images/cat-over.gif” alt=”Cat” /> <img src=”images/mouse-over.gif” alt=”Mouse” /> </div> CSS .preload{display:none;}
In-Field Labels jQuery Plugin
Last week I was dealing with a unique problem. I needed to set focus to a username field, but the field had an in-field label. The script was set to clear out the helper text (label) when the user entered the field. Hmm…. that won’t work! I remember seeing a nicer implementation on Mobile Me …
PHP html var
$htmlvar=<<<HTML clean html code here <html><body><head></head><h1>Hello world</h1></body></html> HTML; echo $htmlvar;
php strtotime
echo ‘Today day: ‘. date(‘Ymd’) .”\n”; echo date(‘Ymd’, strtotime(‘-1 day’)); echo strtotime(“now”), “\n”; echo strtotime(“10 September 2000”), “\n”; echo strtotime(“+1 day”), “\n”; echo strtotime(“+1 week”), “\n”; echo strtotime(“+1 week 2 days 4 hours 2 seconds”), “\n”; echo strtotime(“next Thursday”), “\n”; echo strtotime(“last Monday”), “\n”; echo ‘Today day: ‘. date(‘Ymd’) .”\n”; $dateprev=date(‘Ymd’, strtotime($date. ‘-1 day’));
15 jQuery Plugins To Create A User Friendly Tooltip
Tooltip is a good way to show extra information when user hovers the cursor over an element. The “hover box” will appear when the mouse hover in, and disappear when the mouse hover out.