• Adam Mark's picture
    Adam Mark on March 7, 2012

    You've probably noticed a bunch of meta tags in our code samples. What do they do? <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> The above tag tells the web container that the content type of the page is HTML and the character encoding is UTF-8. Read More →

  • Adam Mark's picture
    Adam Mark on February 10, 2012

    Apps are full of lists—articles, videos, events, and so on—and these lists are often created dynamically with JavaScript. Say you're creating a list of news articles. Your HTML might begin like this: <ul id="articles"> </ul> How should you fill the empty <ul> with content? There are two basic approaches: Read More →