User:Technical 13/data/2013

Complete list of voters from the 2013 voter list as retrieved with:

var popupHTML = '<div id="lov-ui" style="z-index: 1000px; background-color: white; padding: 4px; border: 1px solid rgb(170, 170, 170); border-radius: 6px; text-align: left; font-size: 11px; color: black; display: block; position: absolute; top: 100px; left: 200px; width: 640px; height: 480px;" class="ui-draggable"><div style="font-weight: bold; border-bottom: 1px solid #AAA; padding: 4px;"><span id="lov-title">List of Voters</span> <span id="lov_count"></span><span style="float: right; text-transform: none;"><a id="lov-close" style="cursor: pointer" onclick="$(\'#lov-ui\').remove();"><img src="//upload.wikimedia.org/wikipedia/commons/b/b6/Chrome_close_button.png"/></a></span></div><textarea id="lov_la" rows="29"></textarea></div></div>';
$('body').append(popupHTML);
var voterList = new Array();
$('#lov_la').text('var voterList_2013 = new Array("');
$('table.mw-datatable.TablePager tbody').find('tr').each( function(e){
   voterList[e] = $(this).find('td.TablePager_col_vote_voter_name a:first').text();
   $('#lov_la').text($('#lov_la').text() + $(this).find('td.TablePager_col_vote_voter_name a:first').text() + '", "');
});
$('#lov_la').text($('#lov_la').text().slice(0, $('#lov_la').text().length-4) + '");');
$('#lov_count').text('(' + voterList.length + ')');