#92: Code Walkthrough of Drawing Table

The Drawing Table is in essence a mini one-page jQuery application. It has one primary function, creating a colored design by changing the colors of cells in an HTML table. However it has many features to make this as easy …

Avatar of Chris Coyier
Chris Coyier on (Updated on )

New Poll: Is Your Degree Related To Your Job?

The full question is:

If you have a degree from college and have a job, is that degree related to your current job?

It’s pretty common to hear about folks who have made their way into the web worker world …

Avatar of Chris Coyier
Chris Coyier on (Updated on )

Boilerplate CSS3 Media Queries

Direct Link

A collection of media queries from Andy Clarke to get you started building responsive sites. Responsive is the new word for sites that react to the space they have available to restyle their content the best they can in that …

Avatar of Chris Coyier
Shared by Chris Coyier on

Poll Results: Multiple JavaScript Libraries

The question was:

Do you ever use two JavaScript libraries on the same page?

My thinking in creating this poll was around two ideas:

  1. An excuse to educate people that using multiple libraries on the same page is generally a
Avatar of Chris Coyier
Chris Coyier on (Updated on )

Multiline String Variables in JavaScript

This works:

var htmlString = "<div>This is a string.</div>";

This fails:

var htmlSTring = "<div>
  This is a string.
</div>";

Sometimes this is desirable for readability.

Add backslashes to get it to work:

var htmlSTring = "<div>\
  This is a 
Avatar of Chris Coyier
Chris Coyier on

WebP Image Format

Direct Link

Google has released a new image compression format called WebP (pronounced “weppy”). It is for photographic style images (like JPG) and also lossy (like JPG). Their example gallery has side by side comparisons where the WebP version is equal to …

Avatar of Chris Coyier
Shared by Chris Coyier on

Drawing Table

I made a thing, in which you can use your mouse cursor to draw on a grid with different colors. You can then copy-and-paste the HTML from the design you made.…

Avatar of Chris Coyier
Chris Coyier on (Updated on )