HTML5 Zone is brought to you in partnership with:
  • submit to reddit
Allen Coin05/18/13
583 views
0 replies

Video: Building Web Applications with Ember.js

In this talk, Yehuda Katz shows us how Ember can be used to build fast and responsive apps, and shares some nifty aspects of Ember you might not know about.

Yusuf Aytaş05/17/13
2144 views
0 replies

Achieving Abstraction In JavaScript

While abstraction is well understood and well applied in languages like Java, C++, this approach is not discussed much for JavaScript. In this post, we will try to give some insight for abstraction of JavaScript.

Alexander Beletsky05/17/13
3588 views
0 replies

GitHub as a blogging platform

No, I'm not going to talk about creating some github-backed blogging system. I would like to talk about a blogging style I tried to apply recently to GitHub

Raymond Camden05/17/13
406 views
0 replies

Hear me wax poetic on Nerd Radio

Ray Camden, Adobe Creative Cloud Evangelist, talks with us about his sessions at MAX covering topics like PhoneGap Build and web development tools.

Paul Underwood05/17/13
548 views
0 replies

Multi Environment WordPress wp-config.php

When you are developing any website you will always have different environments for your website, the number of environments you need will depend on the size of the project and how many people are involved in the project.

Artem Tabalin05/16/13
3491 views
0 replies

AngularJS - Get a First Impression

AngularJS is amazing JavaScript framework designed to create single-page applications (SPA) using MVC architecture. In this article I would like to demonstrate the strength of the framework and show how to use angular basic features in action.

Raymond Camden05/16/13
1127 views
0 replies

JavaScript Design Patterns - The Revealing Module Pattern

As a reminder, the idea behind this series is to create real, practical examples of various JavaScript design patterns based on the book, "Learning JavaScript Design Patterns" by Addy Osmani. (See my review here.) In this blog entry I'll be discussing the Revealing Module pattern.

Dmitry Sheiko05/16/13
1561 views
0 replies

Importing External Files in JavaScript

As a JavaScript application grows, navigation on the code becomes hellish. It comes to mind how useful it would be to have the ability to include JavaScript files.

Paul Underwood05/16/13
739 views
0 replies

CSS Flip Boards

In this tutorial we are going to create a flip board effect by using CSS, there are 2 effects we can create one the hover event we are going to have one board flip on the horizontal and another board which will flip on the vertical.

Rob Williams05/16/13
2173 views
0 replies

Thoughts on the Html5 Hail Mary

A week or so ago, the Typesafe guys released a new version of their website, and a product they are calling Activator

Niels Matthijs05/15/13
652 views
0 replies

The Breadcrumb: Where does it belong?

Once a novel concept, the breadcrumb has become one of the strongholds of just about every content-heavy website's interface out there. When you consider its place in the html though, it's a somewhat unusual component.

Remy Sharp05/15/13
1135 views
0 replies

tracegl for JavaScript debugging

In preparing for my new Node workshop my tool of choice used to be node-inspector but development has gone idle and it’s showing it’s age. However, recently I came across tracegl I was intrigued as it looked to add to my debugging tools for Node.

Derik Whittaker05/15/13
1183 views
0 replies

Typescript Bundler Issue - Not transforming to JavaScript

Today one of the viewers of my Pluralsight course was having issues and I was trying to help him via email, but to no avail. I asked him to send me his project so I could take a look myself.

jb j05/15/13
2990 views
0 replies

CSS and JavaScript tools to take your website to the next level

Want to enhance your website with the latest tools available? In this article, I have compiled a bunch of super useful tools to enhance your website and take it to the next level.

Allen Coin05/14/13
793 views
0 replies

Making scrolling less confusing

Scrolling through a long text on a featureless background is confusing. Notice that on a mobile device, this problem does not exist, at least not nearly to the same degree. Using that basic concept as a model, I’ve put together a quick prototype.

Brian Rinaldi05/14/13
1180 views
0 replies

Best of JavaScript, HTML & CSS - Week of May 6, 2013

While there were a lot of great tutorials and new projects, as expected, this week, only one new project has the ability to thoroughly transform a common interaction with the browser and web pages. This project, of course, is fartscroll.js by the Onion. Enoy!

Derik Whittaker05/14/13
621 views
0 replies

TypeScript references not being created correctly during drag-n-drop

One of the viewers of my Html for the XAML developer course over on Pluralsight sent me a question regarding the ability to drag and drop a d.ts file onto a TypeScript file and have the reference added correctly.

Troy Hunt05/14/13
1086 views
0 replies

Clickjack attack – the hidden threat right in front of you

This is one of those risks which doesn’t tend to get a lot of coverage but it can be a malicious little bugger when exploited by an attacker. Originally described by Jeremiah Grossman of WhiteHat Security fame back in 2008, a clickjacking attack relies on creating a veneer of authenticity under which lies a more sinister objective.

Ben Forta05/13/13
1177 views
0 replies

Building Your First PhoneGap Build App

Want to build a mobile app using web standards? Don Woodward shows you how in this new video Introduction to PhoneGap Build - Building your first app:

Andrey Prikaznov05/13/13
502 views
0 replies

Functional Programming – How to Write Functional Code in PHP

Functional programming can be defined in simple terms as a programming paradigm that does not change the state of a program, instead it uses pure functions

Paul Underwood05/13/13
662 views
0 replies

The HTML Email Boilerplate

With web development there are lots of common tasks that we do over and over again. This is where it's helpful to work with tools that make our lives easier, this can be Server-side frameworks, HTML project boilerplates and HTML email boilerplates.

Raymond Camden05/13/13
846 views
0 replies

MAX Session: Advanced PhoneGap Build

Enjoy my eloquent presentation on the more advanced aspects of using PhoneGap Build. You can download the source code for the sample apps and slide deck as well.

Andy Hawthorne05/12/13
1042 views
0 replies

Getting Started WIth Laravel PHP

If you code for the web, you’ll most likely have seen all the fuss about the Laravel PHP framework. I’ve decided to take a look and see what all the fuss is about.

Alexander Beletsky05/12/13
747 views
0 replies

A .NET Developer in a JavaScript World

This is a transcript of a lighting talk I did at #odessajs conference that took place 13 April in Odessa.

Andy Hawthorne05/11/13
813 views
0 replies

CodeIgniter Partials

In this video tutorial I cover CodeIgniter partials. a Partial is a kind of include file that can be used to break up a template into easily reusable sections. For example, you might have a menu bar that you want everywhere, even where other aspects of the layout are different.