Wow!! Long time now type!

January 14, 2008 by Robert Owen  
Filed under Coldfusion, Javascript

Sorry for the utter lack of posts! The holidays were extremely busy! I hope that Santa was good to all… No Coal in the stockings?

Well, here is my yearly reminder. If you are still doing it manually…. Don’t forget to update the copyrights on your website(s).

If you are still doing it manually.. Then QUIT IT!! Save yourself some work.. I know, it’s not hard.. Only once a year.. But why think about it.

Check out my entry from last year on a Javascript AND Coldfusion method of keeping those pesky copyrights in check.

HAPPY NEW YEAR!!

Possibly Related Posts:


Tell the Masses:
  • Digg
  • Twitter
  • del.icio.us
  • FriendFeed
  • Facebook
  • email
  • Print
  • Google Bookmarks
  • Technorati
  • Live
  • LinkedIn
  • StumbleUpon

New Year Update Reminder

January 6, 2007 by Robert Owen  
Filed under Coldfusion, General, Internet, Javascript

Just a quick reminder to everyone out there… It's a New Year … (Yippeeeee!!!) If you're still doing it by hand, don't forget to update the Copyright Dates on your web sites.

If you're doing it automatically.. Good for you!! Keep up the Good work. Just check to see that it did what it was supposed to do.

If you want to do it automatically, I blogged about a couple of methods a while back:

Update-Copyright-in-Javascript-and-Coldfusion

Check it out… great time saver.. Enjoy the weekend!

Possibly Related Posts:


Tell the Masses:
  • Digg
  • Twitter
  • del.icio.us
  • FriendFeed
  • Facebook
  • email
  • Print
  • Google Bookmarks
  • Technorati
  • Live
  • LinkedIn
  • StumbleUpon

Simple Pop-up Window

December 28, 2006 by Robert Owen  
Filed under Javascript

I tend to use this little bit of javascript quite a bit so I thought I would share. You can use this little javascript to add a “Pop-up” window effect to links in your website.

For example, if you have a page of product images and Item numbers you can make them link to a “Pop-up” window with the item details.
Read more

Possibly Related Posts:


Tell the Masses:
  • Digg
  • Twitter
  • del.icio.us
  • FriendFeed
  • Facebook
  • email
  • Print
  • Google Bookmarks
  • Technorati
  • Live
  • LinkedIn
  • StumbleUpon

Cool Javascript Effect

December 8, 2006 by Robert Owen  
Filed under Javascript

I saw this the other day and thought I'd share… I'm trying to figure out the practicle use for this script.. other than if you're really bored.

Just go to any website that has pictures and paste the code below into the address bar of your browser.


javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+"px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);

Possibly Related Posts:


Tell the Masses:
  • Digg
  • Twitter
  • del.icio.us
  • FriendFeed
  • Facebook
  • email
  • Print
  • Google Bookmarks
  • Technorati
  • Live
  • LinkedIn
  • StumbleUpon

Javascript Countdown

October 13, 2006 by Robert Owen  
Filed under Javascript

Not long ago I Blogged about a Coldfusion method for counting down to a specific date. Well, if you don't have access to a coldfusion server for your site, it's pretty easy to add the same function with Javascript.

I found this script at: JavaScriptKit It's really simple to modify.



Just modify the “var before ” and “var current” text to your own text. Then modify the date in the “countdown(yyyy,mm,dd)” statement.
Then Place this bit of code in the body where you would like the count down to appear.

If you use this code on your page, please keep the credits to the original author in place.

Enjoy!

Possibly Related Posts:


Tell the Masses:
  • Digg
  • Twitter
  • del.icio.us
  • FriendFeed
  • Facebook
  • email
  • Print
  • Google Bookmarks
  • Technorati
  • Live
  • LinkedIn
  • StumbleUpon