InfoQ

InfoQ

Presentation

My Bookmarks

Login or Register to enable bookmarks for unlimited time.

The content has been bookmarked!

There was an error bookmarking this content! Please retry.

Recorded at:
Recorded at

Deep Dive into HTML5 and CSS3

Presented by Wesley Reisz on May 02, 2011 Length 00:42:48     Download: MP3
     Slides
Sections
Development
Topics
CSS3 ,
HTML5 ,
HTML ,
Rich Internet Apps ,
CSS ,
Markup Languages ,
Web Development ,
Languages ,
Architecture ,
CodepaLOUsa 2011 ,
Programming
 

How would you like to view the presentation?

In case you are having issues watching this video, please follow these simple steps to help us investigate the issue:
1. Right click on the video player and select Copy log
2. Paste the copied information in an email to video-issue@infoq.com (clicking this link will fill in the default details in most email clients).
Note: in case your email client hasn't automatically picked up the email subject, please include in your email the URL of the video too.
3. Done.
We will investigate the issue and get back to you as soon as possible. Thanks for helping us improve our site!
Summary
Wesley Reisz explains HTML5, demoing some of its most important features and highlighting some of the obstacles he met while working with it.

Bio
Wesley Reisz is an Architect with Hewlett Packard working with the US Army Accessions Command. Wes is currently implementing web-based applications and portal technologies using mostly Enterprise Java. Additionally, Wes works for the University of Louisville and Sullivan University teaching courses with a .NET, Java, and Architecture focus.

About the conference
Code PaLOUsa is a conference designed to cover all aspects of software development regardless of technology stack. It has sessions revolving around Microsoft, Java, and other development platforms; along with session on higher levels that are platform agnostic. The conference schedule will feature presentations from well-known professionals in the software development community.
jQuery Custom Data Attributes by David Clarke Posted
  1. Back to top

    jQuery Custom Data Attributes

    by David Clarke

    Thanks for the presentation Wes. I just wanted to point out that jQuery supports custom data attributes in a more direct way. Instead of $("someSelector").attr("data-my-data"), using jQuery you can use $("someSelector").data("my-data"); which will automatically add the "data-" prefix. Also worth noting is a breaking change in jQuery 1.6 which uses camel case for accessing data attributes. Quoting the jQuery api documentation, "The treatment of attributes with embedded dashes was changed in jQuery 1.6 to conform to the W3C HTML5 specification."