document.write(‘ n
div.outerRightRegion { display:none!important; } n
td.region3 { width:980px; } n
td.articleBox { padding:10px!important; } n
td.articleBox div.articlePosition3 img { display:none; } n
#bronxButtons { width:100%; clear:both; margin:10px 0; } n
.bronxMapButton { width:300px; height:40px; background:#bbb; border:1px solid #aaa; display:inline-block; float:left; margin-right:36px; text-align:center; padding-top:10px; font-size:1.2em; cursor:pointer; font-family:’Open Sans’,Helvetica,Arial,sans-serif; text-transform:uppercase; font-weight:bold; } n
#selectBronxMapThree {margin-right:0;} n
.bronxSelected { background:#eee; border:1px solid #ddd; } n
.bronxMapButton:hover { background:#FFCF79; } n
‘);
The Nuggets own Colorado. This .
As it did with , Twitter mapped the followers of every NBA team’s official handle, showing where each finds the most support.
Unsurprisingly, the Nuggets () has the most followers in Colorado.
But three counties in the state — Crowley, La Plata and Montezuma — prefer the Lakers ().
var bronxMapsOne = new Array(‘
Unsurprisingly, the Nuggets () has the most followers in Colorado.
n
But three counties in the state — Crowley, La Plata and Montezuma — prefer the Lakers ().
‘,’http://interactive.twitter.com/nba_followers/#?mode=team&team=denvernuggets’);
var bronxMapsTwo = new Array(‘
Those three counties, however, have the Nuggets as their second-most followed team …
‘,’http://interactive.twitter.com/nba_followers/#?mode=all&order=2’);
var bronxMapsThree = new Array(‘
… and their preference for the Lakers put them among the majority among Twitter users in the U.S. The Lakers, despite their dismal record this season, are the most followed NBA team in the nation.
‘,’http://interactive.twitter.com/nba_followers/#?mode=all&order=1’);
$(‘#selectBronxMapOne’).on(‘click’, function() {
if (!$(this).hasClass(‘bronxSelected’)) {
$(this).addClass(‘bronxSelected’);
$(this).siblings().removeClass(‘bronxSelected’);
$(‘#bronxDescript’).html(bronxMapsOne[0]);
$(‘#bronxMaps’).attr(‘src’,bronxMapsOne[1]);
}
});
$(‘#selectBronxMapTwo’).on(‘click’, function() {
if (!$(this).hasClass(‘bronxSelected’)) {
$(this).addClass(‘bronxSelected’);
$(this).siblings().removeClass(‘bronxSelected’);
$(‘#bronxDescript’).html(bronxMapsTwo[0]);
$(‘#bronxMaps’).attr(‘src’,bronxMapsTwo[1]);
}
});
$(‘#selectBronxMapThree’).on(‘click’, function() {
if (!$(this).hasClass(‘bronxSelected’)) {
$(this).addClass(‘bronxSelected’);
$(this).siblings().removeClass(‘bronxSelected’);
$(‘#bronxDescript’).html(bronxMapsThree[0]);
$(‘#bronxMaps’).attr(‘src’,bronxMapsThree[1]);
}
});



