AndrewSellick.com
  • Home
  • Articles
  • Sitemap
  • Layout Templates
  • About
  • Contact

Advance Vista Styled CSS Menu

Posted by andy in March 26th 2008  

digg_url = “http://www.andrewsellick.com/94/advance-vista-styled-css-menu”;

 

After seeing an amazing design tutorial on PSDTUTS for a Vista Style menu design a decided to give it ago and turn their design into reality.  Well I’ve built it and it looks pretty good (see the css vista menu demo) so I thought I would share how I did it [...]

Continue reading " Advance Vista Styled CSS Menu "

4 Comments
under: CSS, XHTML
Digg it Add to del.icio.us Stumble it add to technorati

JavaScript Clone Object Function

Posted by andy in March 20th 2008  

Here’s a pretty useful function that clones objects with the use of recursion allowing deep cloning:
function cloneObj(o) {
     if(typeof(o) != ‘object’) return o;
     if(o == null) return o;
   
     var newO = new Object();
   
     for(var i in o) newO[i] = cloneObj(o[i]);
      return newO;
 }

 
Original source snipplr.com.

Continue reading " JavaScript Clone Object Function "

No Comment
under: JavaScript
Digg it Add to del.icio.us Stumble it add to technorati

JavaScript GUID Generator

Posted by andy in March 19th 2008  

I recently found an interesting forum post which detailed how to generate GUIDs using JavaScript on the fly.  Its very simple and looks as follows:
function S4() {
    return (((1+Math.random())*0×10000)|0).toString(16).substring(1);
}
function generateGuid(){
        return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4()).toUpperCase();
}
 

Originally posted by  Dr John Stockton on thescripts.com.

Continue reading " JavaScript GUID Generator "

No Comment
under: JavaScript
Digg it Add to del.icio.us Stumble it add to technorati

Playstation 3 (PS3) and BTHomeHub network issues (80710723)

Posted by andy in February 27th 2008  

Well I’ve just got myself a Playstation 3 so as you can imagine I was really happy when I finally got it all connected up?!  Thing is that’s when everything seemed to go wrong.
My first port of call, once inserting the basic settings, was to get connected to my wireless network.  As you can see [...]

Continue reading " Playstation 3 (PS3) and BTHomeHub network issues (80710723) "

1 Comment
under: General
Digg it Add to del.icio.us Stumble it add to technorati

HTML Forms on the fly

Posted by andy in February 19th 2008  

I have been looking about at form generators recently and I think it’s fair to say pForm have created one of the best. The generator offers many options including; theme/colour scheme selection, the choice of a multitude of field elements (from a textbox to a file upload) to add to your form, editable form and [...]

Continue reading " HTML Forms on the fly "

4 Comments
under: JavaScript, PHP
Digg it Add to del.icio.us Stumble it add to technorati
« Older Entries

Search

Feeds

feeds

Categories

    • Adobe
    • Browsers
    • CSS
    • Facebook
    • Flash Links
    • Front-end
    • General
    • Google
    • Hosting
    • JavaScript
    • jQuery
    • Layout
    • Maps
    • Mootools
    • PHP
    • Prototype
    • Regular Expressions
    • script.aculo.us
    • SEO
    • Testing
    • Uncategorized
    • XHTML

Archives

    • August 2008
    • March 2008
    • February 2008
    • January 2008
    • December 2007
    • November 2007
    • October 2007
    • September 2007
    • August 2007
    • July 2007
    • June 2007
    • May 2007
    • April 2007
    • March 2007
    • February 2007

Recent Entries

  • No I’m not dead :-)
  • Advance Vista Styled CSS Menu
  • JavaScript Clone Object Function
  • JavaScript GUID Generator
  • Playstation 3 (PS3) and BTHomeHub network issues (80710723)
  • HTML Forms on the fly
  • Script of the week
  • PHP UK Postcode Validation
  • What makes a successful blog?
  • Free SEO internet marketing book
  • JavaScript Table Row Highlighter Class using Mootools
  • BBC Homepage Beta
  • Free IP to Location Database

Recent Comments

  • sebastian in Sexy sliding JavaScript side bar me…
  • Hoş Bir JavaSc… in Sexy sliding JavaScript side bar me…
  • 点点开源 &r… in Sexy sliding JavaScript side bar me…
  • 点点开源 &r… in Sexy Sliding Menu for script.aculo.…
  • transpalet in 100 great free and open source tool…
  • Menu coulissant… in Sexy sliding JavaScript side bar me…
  • Sycrog in Advance Vista Styled CSS Menu
  • A study in Ajax… in Sexy Sliding Menu for script.aculo.…
  • magjogui in Sexy sliding JavaScript side bar me…
  • Ferramentas e a… in 100 great free and open source tool…

Most Comments

  • Sexy sliding JavaScript side bar menu using mootools (105)
  • 15 must have web developer tools for beginners (58)
  • 100 great free and open source tools and applications for web developers (58)
  • Fancy Sliding Tab Menu V2 (46)
  • Sexy Sliding Menu for script.aculo.us (28)
  • Top 15 free and open source web developer tools updated (27)
  • Simple JavaScript Slide Show Using script.aculo.us (24)
  • Fancy Sliding Tab Menu using script.aculo.us (17)
  • CSS PNG Hack for Internet Explorer (IE) (15)
  • Fancy Sliding Menu for Mootools (15)
  • Sliding Menu Revisited (14)
  • Simple 3D Carousel using Mootools (13)
Box-Tube Box Modulize WordPress Theme By Dezzain Studio
©2006-2008 Andrew Sellick