forked from yihui/bookdown-crc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scrape.html
1336 lines (1325 loc) · 42.7 KB
/
scrape.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<!-- Content Copyright City of St. Louis --><!-- Page generated 2022-10-08 14:02:45 on server 1 by CommonSpot Build 10.6.1.142 (2020-03-13 15:03:29) --><!-- JavaScript & DHTML Code Copyright © 1998-2020, PaperThin, Inc. All Rights Reserved. --><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="Description" id="Description" content="Links to Wards 1 through 28, and their Respective Aldermen">
<meta name="Generator" id="Generator" content="CommonSpot Build 10.6.1.142">
<title>Wards 1 - 28</title>
<style id="cs_antiClickjack">body{display:none !important;position:absolute !important;top:-5000px !important;}</style>
<script type="text/javascript">(function(){var chk=0;try{if(self!==top){var ts=top.document.location.href.split('/');var ws=window.document.location.href.split('/');if(ts.length<3||ws.length<3)chk=1;else if(ts[2]!==ws[2])chk=2;else if(ts[0]!==ws[0])chk=3;}}catch(e){chk=4;}if(chk===0){var stb=document.getElementById("cs_antiClickjack");stb.parentNode.removeChild(stb);}else{top.location = self.location}})();</script><script>
var jsDlgLoader = '/government/departments/aldermen/loader.cfm';
var jsSiteResourceLoader = '/cs-resources.cfm?r=';
var jsSiteResourceSettings = {canCombine: false, canMinify: false};
</script><!-- beg (1) PrimaryResources --><script type="text/javascript" src="/ADF/thirdParty/jquery/jquery-1.12.js"></script><script type="text/javascript" src="/commonspot/javascript/browser-all.js"></script><!-- end (1) PrimaryResources --><!-- beg (2) SecondaryResources --><link rel="stylesheet" type="text/css" href="/style/magnific-popup.css?v=1">
<!-- end (2) SecondaryResources --><!-- beg (3) StyleTags --><!-- end (3) StyleTags --><!-- beg (4) JavaScript --><script type="text/javascript">
<!--
var gMenuControlID = 0;
var menus_included = 0;
var jsSiteID = 1;
var jsSubSiteID = 137;
var js_gvPageID = 193532;
var jsPageID = 193532;
var jsPageSetID = 0;
var jsPageType = 0;
var jsSiteSecurityCreateControls = 0;
var jsShowRejectForApprover = 1;
// -->
</script><script>
var jsDlgLoader = '/government/departments/aldermen/loader.cfm';
var jsSiteResourceLoader = '/cs-resources.cfm?r=';
var jsSiteResourceSettings = {canCombine: false, canMinify: false};
</script><!-- end (4) JavaScript --><!-- beg (5) CustomHead --><meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@STLCityGov">
<meta name="twitter:title" content="Wards and Aldermen">
<meta name="twitter:description" content="Links to Wards 1 through 28, and their Respective Aldermen">
<meta name="twitter:image" content="">
<meta property="og:site_name" content="stlouis-mo.gov">
<meta property="og:type" content="website">
<meta property="og:title" content="Wards and Aldermen">
<meta property="og:url" content="https://www.stlouis-mo.gov/government/departments/aldermen/Wards-1-28.cfm">
<meta property="og:description" content="Links to Wards 1 through 28, and their Respective Aldermen">
<meta property="og:updated_time" content="2022-07-01:10:07">
<meta property="og:image" content="">
<meta property="og:image:url" content="">
<meta property="og:image:secure_url" content="">
<meta property="og:image:width" content="">
<meta property="og:image:height" content="">
<!-- Tell IE not to use compatibility mode --><meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="v1wiQd5XNIGq8gxzwaKmoOHtPWwGoNO2uCIIMrghXrw">
<meta name="theme-color" content="#1e526b">
<link href="/style/screen.css?v=3.5" rel="stylesheet" type="text/css" media="all">
<link href="/style/print.css?v=2.2" rel="stylesheet" type="text/css" media="print">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,700%7CMerriweather" rel="stylesheet" type="text/css">
<link href="/templates/lib/pikaday/css/pikaday.css" rel="stylesheet" type="text/css" media="all">
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="/style/ie.css"/>
<meta http-equiv="Imagetoolbar" content="no"/>
<![endif]--><!--[if lt IE 6]>
<link rel="stylesheet" type="text/css" href="/style/ie5.css"/>
<![endif]--><!-- IE --><link rel="shortcut icon" type="image/x-icon" href="/favicon1.ico">
<!-- other browsers --><link rel="icon" type="image/x-icon" href="/favicon1.ico">
<style type="text/css">
#UploadDocSpan {display:none; !important}
</style>
<meta name="DC.Date.Created" scheme="DCTERMS.W3CDTF" content="2011-04-04 15:19:55">
<meta name="DC.Type" content="22">
<meta name="DC.Language" scheme="DCTERMS.ISO639-2" content="en">
<meta name="DC.Title" lang="en" content="Wards and Aldermen">
<meta name="DC.Description" lang="en" content="Links to Wards 1 through 28, and their Respective Aldermen">
<meta name="DC.Coverage.Ward" lang="en" content="Many Wards">
<meta name="DC.Coverage.NeighBorhood" lang="en" content="City-Wide">
<meta name="DC.Subject" lang="en" content="Elected Officials,Wards and Neighborhoods">
<meta name="DC.Publisher" lang="en" content="">
<meta name="DC.Audience" lang="en" content="Multiple Audiences">
<link rel="canonical" href="https://www.stlouis-mo.gov/government/departments/aldermen/Wards-1-28.cfm">
<!-- end (5) CustomHead --><!-- beg (6) TertiaryResources --><!-- end (6) TertiaryResources --><!-- beg (7) authormode_inlinestyles --><link rel="stylesheet" type="text/css" href="/commonspot/commonspot.css" id="cs_maincss">
<!-- end (7) authormode_inlinestyles -->
</head>
<body class="CS_Document">
<span role="navigation" aria-label="Top of page" id="__topdoc__"></span><script type="text/javascript">
<!--
// always-include-ie.js Copyright 1998-2005 PaperThin, Inc. All rights reserved.
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
var bCanRollover=0
if (bName == "Netscape")
{
if(bVer >= 3)
bCanRollover=1;
}
else if (bName == "Microsoft Internet Explorer")
{
if(bVer >= 4)
bCanRollover=1;
}
function ImageSet(imgID,newTarget)
{
if (bCanRollover)
document[imgID].src=newTarget;
}
function clearStatus()
{
window.status = "";
}
function setStatbar(statbar)
{
// #22793 - no-op because browsers don't honor the assignment
// var strStatbar=unescape(statbar);
// window.status=strStatbar;
}
function onLoadComplete()
{
if( menus_included == 1 )
document.onmouseover = document_mouseover; // defined in menu_ie.js
}
function HandleLink(parentID,link,displaylink)
{
// links are in one of the following formats:
// cpe_60_0,CP___PAGEID=100
// CPNEWWIN:WindowName^params@CP___
// CPNEWWIN:child^top=110:left=130:ww=140:hh=150:tb=1:loc=1:dir=0:stat=1:mb=1:sb=1:rs=1@CP___PAGEID=3811,Adv-Search-2,1
// displaylink is the server relative URL or fully qualified URL
windowname = "";
windowparams = "";
// "CPNEWWIN:" & NewWindowName & "^" & params & "@" & linkStruct.LinkURL;
pos = link.indexOf("CPNEWWIN:");
if (pos != -1)
{
pos1 = link.indexOf ("^");
windowname = link.substring (pos+9, pos1);
pos2 = link.indexOf ("@");
windowparams = link.substring (pos1 + 1, pos2);
link = link.substring (pos2 + 1, link.length);
}
if( displaylink && displaylink != "" )
{
if (windowname == "")
window.location = displaylink;
else
{
windowparams = FormatWindowParams(windowparams);
window.open (displaylink, windowname, windowparams);
}
}
else
{
targetLink = link;
if (link.indexOf ("CP___") != -1)
{
httpPos = -1;
commaPos = link.indexOf(",");
if (commaPos != -1)
{
targetUrl = link.substr(commaPos + 1);
if (targetUrl.indexOf("://") != -1 || targetUrl.indexOf("/") == 0)
{
httpPos = commaPos + 1;
}
}
if (httpPos != -1)
{
targetLink = link.substr(httpPos);
commaPos = targetLink.indexOf(",");
if (commaPos != -1)
targetLink = targetLink.substr(0, commaPos);
}
else
targetLink = jsDlgLoader + "?CSRF_Token=" + top.commonspot.util.cookie.readCookie('CSRFTOKEN') + "&csModule=utilities/handle-link&thelink=" + link;
if (windowname == "")
window.location = targetLink;
else
{
windowparams = FormatWindowParams(windowparams);
window.open (targetLink, windowname, windowparams);
}
}
else
{
//commaPos = link.indexOf(",");
//if (commaPos != -1)
// link = link.substr(0, commaPos);
if (windowname == "")
window.location = link;
else
{
windowparams = FormatWindowParams(windowparams);
window.open (link, windowname, windowparams);
}
}
}
}
function doWindowOpen(href,name,params)
{
if (params != '')
window.open (href, name, params);
else
window.open (href, name);
}
// CPNEWWIN:child^top=110:left=130:ww=140:hh=150:tb=1:loc=1:dir=0:stat=1:mb=1:sb=1:rs=1@CP___PAGEID=3811,Adv-Search-2,1
function FormatWindowParams(windowparams)
{
if( windowparams.indexOf(":loc=") != -1 || windowparams.indexOf(":ww=") != -1 || windowparams.indexOf(":hh=") != -1 ||
windowparams.indexOf(":left=") != -1 || windowparams.indexOf(":top=") != -1 )
{
windowparams = substringReplace(windowparams,':left=',',left=');
windowparams = substringReplace(windowparams,'left=','left=');
windowparams = substringReplace(windowparams,':ww=',',width=');
windowparams = substringReplace(windowparams,'ww=','width=');
windowparams = substringReplace(windowparams,':hh=',',height=');
windowparams = substringReplace(windowparams,'hh=','height=');
windowparams = substringReplace(windowparams,':loc=',',location=');
windowparams = substringReplace(windowparams,'loc=','location=');
windowparams = substringReplace(windowparams,':dir=',',directories=');
windowparams = substringReplace(windowparams,'dir=','directories=');
windowparams = substringReplace(windowparams,':tb=',',toolbar=');
windowparams = substringReplace(windowparams,'tb=','toolbar=');
windowparams = substringReplace(windowparams,':stat=',',status=');
windowparams = substringReplace(windowparams,':mb=',',menubar=');
windowparams = substringReplace(windowparams,':sb=',',scrollbars=');
windowparams = substringReplace(windowparams,':rs=',',resizable=');
}
return windowparams;
}
// -->
</script><div role="banner">
<!-- Begin accessibility skip links -->
<ul id="skip-links">
<li>
<a href="#siteSearch">
Skip to search
</a>
</li>
<li>
<a href="#content">
Skip to content
</a>
</li>
</ul>
<!-- End accessibility skip links --><!-- Begin Public Tools --><div class="header-public-tools">
<div class="container">
<ul>
<li>
<a href="#" onclick="return removeTranslation()">
English
</a>
</li>
<li>
<a href="#" onclick="return translatePage('es')">
Español
</a>
</li>
<li>
<a href="#" onclick="return translatePage('fr')">
Français
</a>
</li>
<li class="hidden-xs">
<a href="#" onclick="return translatePage('vi')">
Tiếng Việt
</a>
</li>
<li>
<a href="#" onclick="return translatePage('ps')">
پښتو
</a>
</li>
<li class="hidden-xs">
<a href="#" onclick="return translatePage('bs')">
Bosanski
</a>
</li>
<li class="hidden-xs">
<a href="#" onclick="return translatePage('fa')">
فارسی
</a>
</li>
<li>
<a href="/government/departments/information-technology/web-development/web-accessibility/translate.cfm">
<span class="material-svg material-svg-translate svg-outline invert"></span>
More
</a>
</li>
</ul>
</div>
</div>
<!-- End public tools -->
<!-- Header -->
<div class="header government">
<div class="container">
<div class="header-items">
<div class="header-logo-column">
<div class="logo">
<a href="/" class="logo-top-line" title="stlouis-mo.gov home page">
<strong>STLOUIS</strong>-MO<img src="data:image/svg+xml;base64,DQo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDIwMS42OCAyMDAuNjYiPg0KICAgIDx0aXRsZT5GbGV1ciBEZSBMaXM8L3RpdGxlPg0KICAgIDxnIGlkPSJMYXllcl8yIiBkYXRhLW5hbWU9IkxheWVyIDIiPg0KICAgICAgICA8ZyBpZD0iTGF5ZXJfMS0yIiBkYXRhLW5hbWU9IkxheWVyIDEiIGZpbGwgPSAiI0MwMzIyMSI+DQogICAgICAgICAgICA8cGF0aCBjbGFzcz0iZmxldXItZGUtbGlzIiBkPSJNMTAwLjcxLDEyNy45MWMtNC4yMywwLTQuMjgsMC00Ljc5LTQuNTFBMTEzLjEyLDExMy4xMiwwLDAsMCw4MS4yNyw3OS4xOGMtMy44NS02LjY1LTcuNTQtMTMuMzctOS41NS0yMC44OS00LjA2LTE1LjIuMTItMjguNTEsOS4xMS00MC43NUE2NC40OSw2NC40OSwwLDAsMSw5OS4zNi40LDMuMDYsMy4wNiwwLDAsMSwxMDIsLjIyYzE0LjY3LDkuNDcsMjUuMzEsMjIsMjguODksMzkuNTIsMi4xMiwxMC40LS41MSwyMC4yMS01LjEyLDI5LjUxLTMuODUsNy43Ny04LjI3LDE1LjI3LTExLjg2LDIzLjE2QTEwMC4wNywxMDAuMDcsMCwwLDAsMTA1LjU3LDEyNmMtLjEyLDEuNS0uNjgsMi0yLjA4LDEuOTJDMTAyLjU2LDEyNy44NiwxMDEuNjQsMTI3LjksMTAwLjcxLDEyNy45MVoiIC8+DQogICAgICAgICAgICA8cGF0aCBjbGFzcz0iZmxldXItZGUtbGlzIiBkPSJNMjYuODQsMTMxYTI1LjQ5LDI1LjQ5LDAsMCwxLTEyLjUzLTIuODZDMy4wOCwxMjIuNTYtNC40MiwxMDUuMzUsMi45Miw5My42NSw4LjM1LDg1LDE2LjA2LDc5LjA4LDI2LjEyLDc3LjcyYzE3LjA5LTIuMywzMS40OCwzLjEzLDQxLjc3LDE3LjUxLDYuODMsOS41NSwxMC4yNiwyMC41MywxMi42NCwzMS44OSwwLC4xMiwwLC4yNy0uMTYuNzFhNjEuNDcsNjEuNDcsMCwwLDEtNi42NC0uMDljLS43Mi0uMDctMS40MS0xLjA5LTItMS43OC01LjE4LTYuNDEtMTAuODMtMTIuMjgtMTguMzUtMTZhMjEuNzEsMjEuNzEsMCwwLDAtMTQuMDktMi4xNmMtOS4yMSwxLjgtMTQuMjUsOS0xMy4xLDE4LjQ4QzI2LjM5LDEyNy43NCwyNi42LDEyOS4yMSwyNi44NCwxMzFaIiAvPg0KICAgICAgICAgICAgPHBhdGggY2xhc3M9ImZsZXVyLWRlLWxpcyIgZD0iTTE3NS4yMiwxMzFjMC0zLjY3LjQxLTcuMTItLjA4LTEwLjQ0LTEuMS03LjUxLTYuNjEtMTIuMjgtMTQuMi0xMy02LjM2LS42NC0xMS45LDEuNDQtMTcuMDYsNC45YTU3LjIyLDU3LjIyLDAsMCwwLTEzLjQ3LDEzYy0xLjQsMS44NC0yLjg1LDIuNzctNS4xNiwyLjVhMzcuNzEsMzcuNzEsMCwwLDAtNC4yOSwwYy40My0yLC43My0zLjU1LDEuMTItNS4xMSwyLjQzLTkuNzIsNS44Mi0xOSwxMS41LTI3LjM4LDExLjUyLTE3LDMxLjMtMjAuMzEsNDQtMTcuMzVBMzMuNDksMzMuNDksMCwwLDEsMTk2LjgsOTAuNzVjNi44Myw4LjksNi40MywyMC40LS44NiwzMEEyNS40MSwyNS40MSwwLDAsMSwxNzcuNDgsMTMxQzE3Ni43MiwxMzEuMSwxNzUuOTQsMTMxLDE3NS4yMiwxMzFaIiAvPg0KICAgICAgICAgICAgPHBhdGggY2xhc3M9ImZsZXVyLWRlLWxpcyIgZD0iTTE0NS42LDE0Ny4zNkg1OWMtMi43NiwwLTIuNzYsMC0yLjc3LTIuOCwwLTIuMDYsMC00LjEzLDAtNi4xOSwwLTEuMjkuNDktMS44MywxLjc2LTEuNzQuNDIsMCwuODUsMCwxLjI4LDBIMTQyLjdjMi44OSwwLDIuODksMCwyLjksM1oiIC8+DQogICAgICAgICAgICA8cGF0aCBjbGFzcz0iZmxldXItZGUtbGlzIiBkPSJNMTAwLjg1LDE1Ni4xYzQuMjIsMCw0LjI2LDAsNSw0YTUwLjc1LDUwLjc1LDAsMCwwLDkuOTQsMjEuOTQsNCw0LDAsMCwxLC40Nyw0LjgyLDI4Ljc0LDI4Ljc0LDAsMCwxLTE0LDEzLjQ5LDMuNTIsMy41MiwwLDAsMS0yLjU5LjA3LDI4LjA2LDI4LjA2LDAsMCwxLTE0LjUxLTE0LjQsMi44OCwyLjg4LDAsMCwxLC4zNC0zLjNjNS42Mi03LjQzLDkuNjYtMTUuNTgsMTAuNzMtMjUsLjE0LTEuMTkuNi0xLjgxLDEuOS0xLjY5Qzk5LDE1Ni4xNyw5OS45MywxNTYuMSwxMDAuODUsMTU2LjFaIiAvPg0KICAgICAgICAgICAgPHBhdGggY2xhc3M9ImZsZXVyLWRlLWxpcyIgZD0iTTEzNy45LDE3Mi43NCwxMzIsMTc3LjljLTYuMDctNi0xMC41NS0xMi43NC0xMi4xNS0yMS42OCwyLjQzLDAsNC43LDAsNywwLC4yMSwwLC41MS40OC42Ljc5LDEuNjQsNS45Myw1LjY4LDEwLjI2LDkuNjgsMTQuNjJDMTM3LjMyLDE3MS45MiwxMzcuNTEsMTcyLjIyLDEzNy45LDE3Mi43NFoiIC8+DQogICAgICAgICAgICA8cGF0aCBjbGFzcz0iZmxldXItZGUtbGlzIiBkPSJNODEuOCwxNTYuMTFjLTEuNDIsOC44OS02LDE1LjU4LTEyLjA3LDIxLjc4bC02LTUuMThjLjg3LTEsMS42My0xLjkxLDIuNDItMi43OCwzLjQxLTMuNzYsNi41OC03LjY3LDguMDYtMTIuNjhhMi4wNywyLjA3LDAsMCwxLDEuNDktMS4wOUM3Ny42MiwxNTYsNzkuNTMsMTU2LjExLDgxLjgsMTU2LjExWiIgLz4NCiAgICAgICAgPC9nPg0KICAgIDwvZz4NCjwvc3ZnPg0K" alt="." width="20">GOV
</a>
<a href="/government/departments/mayor/" class="logo-bottom-line" title="Mayor Tishaura O. Jones' home page">
Mayor Tishaura O. Jones
</a>
</div>
</div>
<div class="text-right header-nav-column">
<div role="navigation" aria-label="Main menu">
<ul class="mobile-nav-buttons">
<li>
<a href="#" id="viewMenu">
<span class="glyphicons glyphicons-menu-hamburger"></span>
<span class="button-text">
Menu
</span>
</a>
</li>
<li>
<a href="#" id="viewSearch">
<span class="glyphicons glyphicons-search"></span>
<span class="button-text">
Search
</span>
</a>
</li>
<!-- <li>
<a href="#" id="viewAcc">
<span class="glyphicons glyphicons-cogwheel" style="font-size:.95em;"></span>
<span class="button-text">
Settings
</span>
</a>
</li> -->
</ul>
<ul class="top-nav">
<li>
<a class="link-button service-button" href="/services/">
Services
</a>
</li>
<li>
<a class="link-button government-button" href="/government/">
Government
</a>
</li>
<li>
<a class="link-button news-button" href="/news-media/">
News
</a>
</li>
</ul>
</div>
<form class="site-search" action="/searchresults.cfm" role="search" arial-label="Site-wide search">
<label for="siteSearch" class="sr-only">
Site Search
</label>
<input type="text" name="q" id="siteSearch" class=""><input type="submit" value="Search">
</form>
</div>
</div>
</div>
</div>
</div>
<div class="full-row full-row-alert" role="region" aria-labelledby="alertHeading">
<h2 id="alertHeading" class="sr-only">Alerts and Announcements</h2>
<div class="container">
</div>
</div>
<div role="navigation" aria-label="breadcrumbs">
<div id="cs_control_966" class="cs_control CS_Element_LinkBar">
<div class="full-row full-row-breadcrumbs generic-breadcrumbs">
<div class="container">
<ul class="breadcrumbs">
<li>
<a href="/government/">Government</a>
</li>
<li>
<a href="/government/departments/">Departments and Agencies</a>
</li>
<li>
<a href="/government/departments/aldermen/">Board of Aldermen</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div id="content" role="main" tabindex="0">
<div class="full-row full-row-white">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="row page-title-row">
<div class="col-sm-12">
<div class="row page-title-row">
<div class="col-sm-12">
<h1>Wards and Aldermen</h1>
<p class="page-summary">
Links to Wards 1 through 28, and their Respective Aldermen
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div id="cs_control_5408" class="cs_control CS_Element_Schedule"> <div title="" id="CS_Element_column1container"> <div id="gridRow_1_1_5408" class="cs_GridRow"> <div id="gridCol_1_1_1_1_5408" class="cs_GridColumn"> <div id="cs_control_959843" class="cs_control content-block"> <div class="CS_Textblock_Text">
<p><strong>New Ward Boundaries and Representation</strong></p>
<p>Representation based on new ward boundaries will begin after the aldermanic general election on April 4, 2023. <a href="/government/departments/aldermen/redistricting/redistricting-faq.cfm" class="CP___PAGEID_930601">Learn more about redistricting.</a></p>
</div> </div> </div> </div> </div> </div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div id="cs_control_11019" class="cs_control CS_Element_Schedule"> <div title="" id="CS_Element_row2column1container"> <div id="gridRow_1_1_11019" class="cs_GridRow"> <div id="gridCol_1_1_1_1_11019" class="cs_GridColumn"> <div id="cs_control_959829" class="cs_control CS_Element_Textblock"> <div class="CS_Textblock_Text">
<h2>All Wards</h2>
<p>Each ward and its associated Alderman is listed below. Click on a ward or Alderman for details.</p>
<p><a href="/government/departments/aldermen/about/index.cfm" class="CP___PAGEID_174443">Learn more about the Board of Aldermen</a>. </p>
</div> </div> <a name="customcf201139" id="customcf201139"></a><a name="CP_JUMP_201139" id="CP_JUMP_201139"></a><div id="cs_control_201139" class="cs_control CS_Element_CustomCF"> <div id="CS_CCF_193532_201139">
<table class="data" summary="Lists all City wards in the first column, and the ward's associated alderman in the second.">
<caption>Wards and Aldermen</caption>
<thead><tr>
<th>Ward</th>
<th>Alderman</th>
</tr></thead>
<tbody>
<tr>
<td>
<a href="/government/departments/aldermen/ward-1">
Ward
01
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-1">
Sharon Tyus
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-2">
Ward
02
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-2">
Lisa Middlebrook
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-3">
Ward
03
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-3">
Brandon Bosley
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-4">
Ward
04
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-4">
Dwinderlin Evans
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-5">
Ward
05
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-5">
James Page
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-6">
Ward
06
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-6">
Christine Ingrassia
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-7">
Ward
07
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-7">
Jack Coatar
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-8">
Ward
08
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-8">
Annie Rice
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-9">
Ward
09
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-9">
Dan Guenther
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-10">
Ward
10
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-10">
Joseph Vollmer
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-11">
Ward
11
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-11">
James Lappe
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-12">
Ward
12
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-12">
Bill Stephens
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-13">
Ward
13
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-13">
Anne Schweitzer
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-14">
Ward
14
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-14">
Carol Howard
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-15">
Ward
15
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-15">
Megan E. Green
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-16">
Ward
16
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-16">
Tom Oldenburg
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-17">
Ward
17
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-17">
Tina (Sweet-T) Pihl
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-18">
Ward
18
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-18">
Jesse Todd
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-19">
Ward
19
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-19">
Marlene E Davis
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-20">
Ward
20
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-20">
Cara Spencer
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-21">
Ward
21
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-21">
Laura Keys
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-22">
Ward
22
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-22">
Norma Walker
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-23">
Ward
23
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-23">
Joseph Vaccaro
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-24">
Ward
24
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-24">
Bret Narayan
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-25">
Ward
25
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-25">
Shane Cohn
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-26">
Ward
26
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-26">
Shameem Clark Hubbard
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-27">
Ward
27
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-27">
Pam Boyd
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/ward-28">
Ward
28
</a>
</td>
<td>
<a href="/government/departments/aldermen/ward-28">
Michael J Gras
</a>
</td>
</tr>
<tr>
<td>
<a href="/government/departments/aldermen/president/president.cfm">President
</a>
</td>
<td>
<a href="/government/departments/aldermen/president/president.cfm">
Joseph Vollmer
</a>
</td>
</tr>
</tbody>
</table>
</div> </div> </div> </div> </div> </div>
</div>
<div class="col-sm-6">
<div id="cs_control_11040" class="cs_control CS_Element_Schedule"> <div title="" id="CS_Element_row2column2container"> <div id="gridRow_1_1_11040" class="cs_GridRow"> <div id="gridCol_1_1_1_1_11040" class="cs_GridColumn"> <div id="cs_control_665526" class="cs_control CS_Element_Custom">
<div id="level2">
<h2>
Find Your Aldermen
</h2>
</div>
<div class="content-block">
<div role="alert" aria-relevant="all" class="checkAddress alert" style="position: absolute; left: -999em;">
</div>
<form method="post" action="#address-search">
<input type="hidden" name="AldermanContactOnly" value="Alderman Contact Only"><input type="hidden" name="everyWhere" value="everyWhere"><p>
<label for="streetAddress">Street Address or Parcel: </label>
<br><input type="text" name="streetAddress" id="streetAddress" size="40" maxlength="60" value="" required></p>
<p>
<input type="submit" value="Search" name="findByAddress"></p>
</form>
</div>
</div> <div id="cs_control_506672" class="cs_control CS_Element_CustomCF"> <div id="CS_CCF_193532_506672"> <h2>Ward Maps</h2>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" width="800" height="600" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" title="St. Louis City Wards" src="https://stlcity.maps.arcgis.com/apps/Embed/index.html?webmap=c4cb15ba61cc474aaa8e49d64218ed0f&extent=-90.3209,38.5677,-90.1479,38.6608&zoom=true&scale=true&disable_scroll=true&theme=light"></iframe>
</div>
<h3>Download Maps</h3>
<p>The <a href="/government/departments/planning/">Planning and Urban Design Agency</a> offers free printable PDF maps for each ward.</p>
<div class="content-block">
<ul class="list-group">
<li><a href="/government/departments/planning/documents/citywide-ward-map.cfm">City-wide ward map</a></li>
<li><a href="/government/departments/planning/documents">Maps for each individual ward</a></li>
</ul>
</div>
</div> </div> <div id="cs_control_507654" class="cs_control CS_Element_Textblock"> <div class="CS_Textblock_Text">
<h2>Contact Info</h2>
<p>Individual Aldermen can be contacted from their ward page. </p>
</div> </div> <div id="cs_control_507655" class="cs_control CS_Element_Custom">
<p><strong>Board of Aldermen</strong></p>
<p>(314) 622-3287</p>
<p>
1200 Market, City Hall, Room 230 <br>
St. Louis, Missouri 63103
</p>
<p>Monday - Friday<br>8 AM - 5 PM</p>
<p>
<a href="/government/departments/aldermen/index.cfm" title="View Full Profile">
View full profile
</a>
</p>
</div> </div> </div> </div> </div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div id="cs_control_11021" class="cs_control CS_Element_Schedule"> <div title="" id="CS_Element_row4column1container"> <div id="gridRow_1_1_11021" class="cs_GridRow"> <div id="gridCol_1_1_1_1_11021" class="cs_GridColumn"> <div id="cs_control_689984" class="cs_control CS_Element_Textblock"> <div class="CS_Textblock_Text">
<h2>Aldermanic Committees</h2>
<p>Aldermanic committees serve an important role in reviewing proposed legislation. <a href="/government/departments/aldermen/committees/index.cfm" class="CP___PAGEID_668417">View all aldermanic committees</a>.</p>
</div> </div> <div id="cs_control_551684" class="cs_control CS_Element_Textblock"> <div class="CS_Textblock_Text">
<h2>Find Your Representatives</h2>
<p>Enter your address and <a class="CP___PAGEID_174849" href="/government/departments/aldermen/search-for-your-alderman.cfm">look up your alderman, congressman, state senator, and state representative</a>.</p>
</div> </div> </div> </div> </div> </div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div id="cs_control_20429" class="cs_control CS_Element_Schedule"> <div title="" id="CS_Element_row5column1container"> </div> </div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div id="cs_control_495419" class="cs_control CS_Element_Schedule"> <div title="" id="CS_Element_row6column1container"> </div> </div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div id="feedbackSection">
<div style="display:none;" id="feedbackError" class="error">
<p>
Your feedback was <strong>not sent</strong>.
</p>
<p id="feedbackErrorMessage">
</p>
</div>
<div class="content-block" id="feedbackForm" name="feedbackForm">
<form method="post" action="#feedbackSection">
<label for="theEmail" class="formHP">
Leave this field blank!
</label>
<input type="text" id="theEmail" name="theEmail" class="formHP"><p>
<strong>Was this page helpful? </strong>
<input type="radio" name="helpful" id="yesHelpful" value="yes"><label for="yesHelpful">Yes</label>
<input type="radio" name="helpful" id="notHelpful" value="no"><label for="notHelpful">No</label>
</p>
<div id="whySubmit">
<p id="lookingForContainer">
<label for="lookingFor" id="lookingForLabel">
I was looking for:
<span class="small">
(required)
</span>
</label>
<br><input type="text" name="lookingFor" id="lookingFor" size="60"></p>
<p>
<label for="comments" id="whyLabel">Why?</label>
<br><span class="small" id="whyDescription">
Comments are helpful!
</span>
<br><textarea style="display:block; max-width:100%" id="comments" name="comments" rows="3" cols="20"></textarea><span id="feedbackCharacterLimit" class="small">
500 character limit
</span>
</p>
<p>
<input type="hidden" name="messageAction" value="sendFeedback"><input type="submit" value="Submit Feedback"></p>
</div>
</form>
<span class="small">
Feedback is anonymous.
</span>
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
document.getElementById('whySubmit').style.display = "none";
document.getElementById('notHelpful').addEventListener('click',showElementInline,false)
document.getElementById('yesHelpful').addEventListener('click',showElementInline,false);
});
function showElementInline() {
var whySubmit = document.getElementById('whySubmit');
var whyLabel = $('#whyLabel');
var $lookingForContainer = $('#lookingForContainer');
var $lookingFor = $('#lookingFor');
whySubmit.style.display = "block";
if(this.id == 'yesHelpful') {
$(whyLabel).text('What did you like?');
$(whyDescription).text('Comments are helpful!');
$lookingFor.val('');
$lookingForContainer.hide();
} else {
$(whyLabel).text('What can we improve on this page?');
$(whyDescription).text('Help us make improvements. Is something missing, broken, or incorrect?');
$lookingForContainer.show();
}
}
// Character count-down
$('#comments').keyup(function () {
var left = 500 - $(this).val().length;
if (left < 0) {
$('#feedbackCharacterLimit').text(left + ' characters left (' + Math.abs(left) + ' characters will be cut off)');
} else {
$('#feedbackCharacterLimit').text(left + ' characters left');
}
if (left <= 30) {
$('#feedbackCharacterLimit').css('color', 'red');
$('#feedbackCharacterLimit').css('font-weight', '800');
$('#feedbackCharacterLimit').removeClass('small');
} else if (left <= 50) {
$('#feedbackCharacterLimit').css('color', '#DA7A02');
$('#feedbackCharacterLimit').css('font-weight', '800');
$('#feedbackCharacterLimit').removeClass('small');
} else {
$('#feedbackCharacterLimit').css('color', 'inherit');
$('#feedbackCharacterLimit').css('font-weight', '400');
$('#feedbackCharacterLimit').addClass('small');
}
});
// Validation
$("#feedbackForm").submit(function() {
// Negative feedback with no comment
if($('input[name=helpful]:checked', '#feedbackForm').val() == 'no' & $('#lookingFor').val().length == 0) {
event.preventDefault();
$('#feedbackError').css('display', 'block');
$('#feedbackErrorMessage').text('Please tell us what you were looking for so we can improve the website.');
return false;
}
// Nothing was selected
if(!$('input[name=helpful]:checked', '#feedbackForm').val()) {
event.preventDefault();
$('#feedbackError').css('display', 'block');
$('#feedbackErrorMessage').text('Please select either "yes" or "no" to submit feedback.');
return false;
}
// If the above didn't trigger, submit the form
});
</script><p style="
padding: 20px;
line-height: 1.25em;
background-color: #efefef;
">
<span class="glyphicons glyphicons-thumbs-up"></span>
<strong>
31
comments
from
people
like you
</strong>
have
helped us improve this page. Keep the feedback coming!
</p>
</div>