Skip to content

Instantly share code, notes, and snippets.

@eimg
Created May 30, 2012 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eimg/2834704 to your computer and use it in GitHub Desktop.
Save eimg/2834704 to your computer and use it in GitHub Desktop.
Creating content with Javascript
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Javascript Template</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
$(function() {
var countries = [
{iso:'AS', name:'American Samoa', iso3:'ASM'},
{iso:'AD', name:'Andorra', iso3:'AND'},
{iso:'AO', name:'Angola', iso3:'AGO'},
{iso:'AG', name:'Antigua and Barbuda', iso3:'ATG'},
{iso:'AR', name:'Argentina', iso3:'ARG'},
{iso:'AM', name:'Armenia', iso3:'ARM'},
{iso:'AT', name:'Austria', iso3:'AUT'},
{iso:'AZ', name:'Azerbaijan', iso3:'AZE'},
{iso:'BS', name:'Bahamas', iso3:'BHS'},
{iso:'BH', name:'Bahrain', iso3:'BHR'},
{iso:'BD', name:'Bangladesh', iso3:'BGD'},
{iso:'BB', name:'Barbados', iso3:'BRB'}
];
$.each(countries, function(index, country) {
html = "<tr>";
html += "<td>" + country.iso + "</td>";
html += "<td>" + country.name + "</td>";
html += "<td>" + country.iso3 + "</td>";
html += "</tr>";
$("#countries").append(html);
});
});
</script>
</head>
<body>
<h1>Countries</h1>
<table id="countries">
<tr>
<th>ISO</th>
<th>Country Name</th>
<th>ISO 3</th>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment