JSON test
by timkl
HTML
<h1>Usage bar</h1>
<div id="usage-bar-empty"></div><!-- /usage-bar-empty -->
<div id="usage-bar-fill"></div><!-- /usage-bar-fill -->
CSS
#usage-bar-empty {
position: absolute;
width: 200px;
height: 20px;
border: 1px solid black;
}
#usage-bar-fill {
position: absolute;
width: 140px;
height: 20px;
background: green;
border: 1px solid black;
}
JavaScript
$.ajax({
url: "http://dl.getdropbox.com/u/228089/usage.json",
type: "POST",
success: function(data){
alert("Works!");
},
dataType: "json"
});