Web Design Forum: Skateside - Viewing Profile - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting

Skateside's Profile User Rating: -----

Reputation: 44 Excellent
Group:
Members
Active Posts:
464 (0.36 per day)
Joined:
09-November 08
Profile Views:
10,556
Last Active:
User is online Today, 01:31 PM
Currently:
Viewing Forum: CSS, XHTML/HTML & JavaScript

My Information

Member Title:
Advanced Member
Age:
27 years old
Birthday:
August 20, 1984
Gender:
Not Telling Not Telling
Location:
Bedford

Contact Information

E-mail:
Private
Website URL:
Website URL  http://www.sk80.co.uk

Users Experience

Experience:
Advanced
Area of Expertise:
Coder

Blog Entries

Skateside's Ramblings > How I learned JavaScript

Posted 16 May 2012

The thing with JavaScript is that no-one learns it. Everyone just jumps in (these days with copy-and-paste jQuery plugins) and struggles to take that knowledge further and learn more about the language. In this post I'll describe my the key moments I've had ("JavaScript epiphanies" if you like) while learning; hopefully someone...

Read Full Entry →

Skateside's Ramblings > Number.prototype.times

Posted 28 April 2012

Anyone who has ever worked with the PrototypeJS library will recognise this little beauty. It's a gem of an addition and something that I firmly believe should be added to the ECMAScript standard. It allows a function to be called a set number of times, such as the following example:

[codebox]var n = 4;
// This will alert 0, then 1, 2 and...

Read Full Entry →

Skateside's Ramblings > Do you comment your DOM manipulation?

Posted 30 March 2012

I'm not talking about commenting your code, although you should be doing that anyway. JavaScript has the ability to create HTML comments:

var comment = document.createComment('the comment itself');
document.getElementById('foo').appendChild(comment);

You can even do it in...

Read Full Entry →

Skateside's Ramblings > How JavaScript animation works

Posted 11 March 2012

I often find myself looking at certain things that the major libraries do and thinking "I wonder how they do that?" Animation was one of those, so I looked through jQuery and YUI to see how they did it, built my own animation function to teach myself and now that it's working, I'll show everyone else how it works.

When I first...

Read Full Entry →

Skateside's Ramblings > Using JavaScript to detect CSS Support

Posted 26 February 2012

Have you ever had a client that explicitly asked for rounded corners and drop shadows on their design? It's a royal pain in the ... well, it's a royal pain. Every modern piece of CSS you want to use: box-shadow, box-radius, [font="Courier...

Read Full Entry →