Moving autocomplete from trunk to 1.7 branch
@ -23,7 +23,6 @@
|
||||
|
||||
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
||||
<script type="text/javascript" src="../../ui/ui.accordion.js"></script>
|
||||
<script type="text/javascript" src="../../ui/ui.autocomplete.js"></script>
|
||||
<script type="text/javascript" src="../../ui/ui.colorpicker.js"></script>
|
||||
<script type="text/javascript" src="../../ui/ui.datepicker.js"></script>
|
||||
<script type="text/javascript" src="../../ui/i18n/ui.datepicker-ar.js"></script>
|
||||
@ -219,7 +218,6 @@
|
||||
|
||||
<ul class="component-links">
|
||||
<li><a href="#ui.accordion" title="Goto Accordion's Component Page">Accordion</a></li>
|
||||
<li><a href="#ui.autocomplete" title="Goto Accordion's Component Page">Autocomplete</a></li>
|
||||
<li><a href="#ui.colorpicker" title="Goto Colorpicker's Component Page">Colorpicker</a></li>
|
||||
<li><a href="#ui.datepicker" title="Goto Datepicker's Component Page">Datepicker</a></li>
|
||||
<li><a href="#ui.dialog" title="Goto Dialog's Component Page">Dialog</a></li>
|
||||
|
@ -1,32 +0,0 @@
|
||||
<script type="text/javascript">
|
||||
|
||||
var autocomplete_data = '["aero", "airplane", "book","movie","music","sports","skating","swim"]';
|
||||
|
||||
var model = {
|
||||
|
||||
renderAt: '#containerDemo',
|
||||
|
||||
title: 'Autocomplete Demos',
|
||||
|
||||
demos: [
|
||||
|
||||
{
|
||||
title: 'Simple autocomplete',
|
||||
desc: 'With few lines of code you could build a autocomplete. You can try more options on the fly! ',
|
||||
html: '<input id="autocomplete" type="text" /> (Try type <em>a</em>, <em>m</em> or <em>s</em>)',
|
||||
destroy: '$("#autocomplete").autocomplete("destroy");',
|
||||
options: [
|
||||
{ desc: 'Attach a autocomplete', source: '$("#autocomplete").autocomplete({data:'+autocomplete_data+'});' }
|
||||
]
|
||||
}
|
||||
|
||||
]
|
||||
};
|
||||
|
||||
$(function(){
|
||||
|
||||
uiRenderDemo(model);
|
||||
|
||||
});
|
||||
|
||||
</script>
|
@ -7,7 +7,6 @@
|
||||
<script type="text/javascript" src="../jquery-1.2.6.js"></script>
|
||||
<script type="text/javascript" src="../ui/ui.core.js"></script>
|
||||
<script type="text/javascript" src="../ui/ui.accordion.js"></script>
|
||||
<script type="text/javascript" src="../ui/ui.autocomplete.js"></script>
|
||||
<script type="text/javascript" src="../ui/ui.datepicker.js"></script>
|
||||
<script type="text/javascript" src="../ui/ui.dialog.js"></script>
|
||||
<script type="text/javascript" src="../ui/ui.draggable.js"></script>
|
||||
@ -24,7 +23,6 @@
|
||||
<script type="text/javascript" src="simulate/jquery.simulate.js"></script>
|
||||
|
||||
<script type="text/javascript" src="accordion.js"></script>
|
||||
<script type="text/javascript" src="autocomplete.js"></script>
|
||||
<script type="text/javascript" src="datepicker.js"></script>
|
||||
<script type="text/javascript" src="dialog.js"></script>
|
||||
<script type="text/javascript" src="draggable.js"></script>
|
||||
@ -49,7 +47,6 @@
|
||||
<h4>Run individual testsuites or doubleclick a test below</h4>
|
||||
<ul>
|
||||
<li><a href="accordion.html">Accordion</a></li>
|
||||
<li><a href="autocomplete.html">Autocomplete</a></li>
|
||||
<li><a href="datepicker.html">Datepicker</a></li>
|
||||
<li><a href="dialog.html">Dialog</a></li>
|
||||
<li><a href="draggable.html">Draggable</a></li>
|
||||
|
@ -8,7 +8,7 @@
|
||||
<script type="text/javascript" src="../ui/ui.core.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
var components = ["accordion","autocomplete","datepicker","dialog","draggable","progressbar","resizable","selectable","slider","sortable","spinner"];
|
||||
var components = ["accordion","datepicker","dialog","draggable","progressbar","resizable","selectable","slider","sortable","spinner"];
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
</script>
|
||||
|
||||
<script type="text/javascript" src="../ui/ui.accordion.js"></script>
|
||||
<script type="text/javascript" src="../ui/ui.autocomplete.js"></script>
|
||||
<script type="text/javascript" src="../ui/ui.datepicker.js"></script>
|
||||
<script type="text/javascript" src="../ui/ui.dialog.js"></script>
|
||||
<script type="text/javascript" src="../ui/ui.draggable.js"></script>
|
||||
|
@ -1,29 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
<link rel="stylesheet" href="qunit/testsuite.css" type="text/css" media="screen">
|
||||
|
||||
<script type="text/javascript" src="../jquery-1.2.6.js"></script>
|
||||
<script type="text/javascript" src="../ui/ui.core.js"></script>
|
||||
<script type="text/javascript" src="../ui/ui.autocomplete.js"></script>
|
||||
|
||||
<script type="text/javascript" src="qunit/testrunner.js"></script>
|
||||
<script type="text/javascript" src="simulate/jquery.simulate.js"></script>
|
||||
|
||||
<script type="text/javascript" src="autocomplete.js"></script>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>jQuery - Autocomplete Test Suite</h1>
|
||||
<div id="main" style="display: none">
|
||||
|
||||
<input type="text" name="autocomplete" value="" id="autocomplete">
|
||||
|
||||
</div>
|
||||
|
||||
<ol id="tests"></ol>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,51 +0,0 @@
|
||||
test("init", function() {
|
||||
expect(6);
|
||||
|
||||
el = $("#autocomplete").autocomplete();
|
||||
ok(true, '.autocomplete() called on element');
|
||||
|
||||
$([]).autocomplete();
|
||||
ok(true, '.autocomplete() called on empty collection');
|
||||
|
||||
$("<input/>").autocomplete();
|
||||
ok(true, '.autocomplete() called on disconnected DOMElement');
|
||||
|
||||
$("<input/>").autocomplete().autocomplete("foo");
|
||||
ok(true, 'arbitrary method called after init');
|
||||
|
||||
$("<input/>").autocomplete().data("foo.autocomplete");
|
||||
ok(true, 'arbitrary option getter after init');
|
||||
|
||||
$("<input/>").autocomplete().data("foo.autocomplete", "bar");
|
||||
ok(true, 'arbitrary option setter after init');
|
||||
});
|
||||
|
||||
test("destroy", function() {
|
||||
expect(6);
|
||||
|
||||
$("#autocomplete").autocomplete().autocomplete("destroy");
|
||||
ok(true, '.autocomplete("destroy") called on element');
|
||||
|
||||
$([]).autocomplete().autocomplete("destroy");
|
||||
ok(true, '.autocomplete("destroy") called on empty collection');
|
||||
|
||||
$("<input/>").autocomplete().autocomplete("destroy");
|
||||
ok(true, '.autocomplete("destroy") called on disconnected DOMElement');
|
||||
|
||||
$("<input/>").autocomplete().autocomplete("destroy").autocomplete("foo");
|
||||
ok(true, 'arbitrary method called after destroy');
|
||||
|
||||
$("<input/>").autocomplete().autocomplete("destroy").data("foo.autocomplete");
|
||||
ok(true, 'arbitrary option getter after destroy');
|
||||
|
||||
$("<input/>").autocomplete().autocomplete("destroy").data("foo.autocomplete", "bar");
|
||||
ok(true, 'arbitrary option setter after destroy');
|
||||
});
|
||||
|
||||
|
||||
test("highlighter", function() {
|
||||
equals( jQuery.Autocompleter.defaults.highlight("Peter", "Pe"), "<strong>Pe</strong>ter" );
|
||||
equals( jQuery.Autocompleter.defaults.highlight("Peter <em><Pan></em>", "Pe"), "<strong>Pe</strong>ter <em><Pan></em>" );
|
||||
equals( jQuery.Autocompleter.defaults.highlight("Peter <em><Pan></em>", "a"), "Peter <em><P<strong>a</strong>n></em>" );
|
||||
equals( jQuery.Autocompleter.defaults.highlight("Peter <em>(<Pan>)</em>", "(<P"), "Peter <em><strong>(<P</strong>an>)</em>" );
|
||||
});
|
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 7.6 KiB |
Before Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 6.5 KiB |
@ -1,132 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
<title>jQuery Autocomplete Plugin</title>
|
||||
|
||||
<script type="text/javascript" src="../../../jquery-1.2.6.js"></script>
|
||||
<script type="text/javascript" src="../../../ui/ui.core.js"></script>
|
||||
<script type="text/javascript" src="../../../ui/ui.autocomplete.js"></script>
|
||||
|
||||
<script type='text/javascript' src='localdata.js'></script>
|
||||
<link rel="stylesheet" type="text/css" href="main.css" />
|
||||
<link rel="stylesheet" href="../../../themes/default/ui.all.css" type="text/css" media="screen" title="no title" charset="utf-8">
|
||||
|
||||
<script type="text/javascript">
|
||||
$().ready(function() {
|
||||
|
||||
function findValueCallback(event, data, formatted) {
|
||||
$("<li>").html( !data ? "No match!" : "Selected: " + formatted).appendTo("#result");
|
||||
}
|
||||
|
||||
function formatItem(row) {
|
||||
return row[0] + " (<strong>id: " + row[1] + "</strong>)";
|
||||
}
|
||||
function formatResult(row) {
|
||||
return row[0].replace(/(<.+?>)/gi, '');
|
||||
}
|
||||
|
||||
$("#suggest1").autocomplete({ data: cities });
|
||||
$("#month").autocomplete({
|
||||
data: months,
|
||||
minChars: 0,
|
||||
max: 12,
|
||||
autoFill: true,
|
||||
mustMatch: true,
|
||||
matchContains: false,
|
||||
scrollHeight: 220,
|
||||
formatItem: function(data, i, total) {
|
||||
// don't show the current month in the list of values (for whatever reason)
|
||||
if ( data[0] == months[new Date().getMonth()] )
|
||||
return false;
|
||||
return data[0];
|
||||
}
|
||||
});
|
||||
$("#suggest13").autocomplete({
|
||||
data: emails,
|
||||
minChars: 0,
|
||||
width: 310,
|
||||
matchContains: "word",
|
||||
autoFill: false,
|
||||
formatItem: function(row, i, max) {
|
||||
return i + "/" + max + ": \"" + row.name + "\" [" + row.to + "]";
|
||||
},
|
||||
formatMatch: function(row, i, max) {
|
||||
return row.name + " " + row.to;
|
||||
},
|
||||
formatResult: function(row) {
|
||||
return row.to;
|
||||
}
|
||||
});
|
||||
|
||||
$("#suggest3").autocomplete({
|
||||
data: cities,
|
||||
multiple: true,
|
||||
mustMatch: true,
|
||||
autoFill: true
|
||||
});
|
||||
|
||||
$("#tags").autocomplete(["c++", "java", "php", "coldfusion", "javascript", "asp", "ruby", "python", "c", "scala", "groovy", "haskell", "pearl"], {
|
||||
width: 320,
|
||||
max: 4,
|
||||
highlight: false,
|
||||
multiple: true,
|
||||
multipleSeparator: " ",
|
||||
scroll: true,
|
||||
scrollHeight: 300
|
||||
});
|
||||
|
||||
|
||||
|
||||
$("#clear").click(function() {
|
||||
$(":input").unautocomplete();
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div id="content">
|
||||
|
||||
<form autocomplete="off">
|
||||
<p>
|
||||
<label>Single City (local):</label>
|
||||
<input type="text" id="suggest1" />
|
||||
<input type="button" value="Get Value" />
|
||||
</p>
|
||||
<p>
|
||||
<label>Month (local):</label>
|
||||
<input type="text" id="month" />
|
||||
<input type="button" value="Get Value" />
|
||||
(Current month is excluded from list)
|
||||
</p>
|
||||
<p>
|
||||
<label>E-Mail (local):</label>
|
||||
<input type="text" id="suggest13" />
|
||||
<input type="button" value="Get Value" />
|
||||
</p>
|
||||
<p>
|
||||
<label>Multiple Cities (local):</label>
|
||||
<textarea id='suggest3' cols='40' rows='3'></textarea>
|
||||
<input type="button" value="Get Value" />
|
||||
</p>
|
||||
<p>
|
||||
<label>Tags (local):</label>
|
||||
<input type="text" id='tags' />
|
||||
<input type="button" value="Get Value" />
|
||||
</p>
|
||||
|
||||
<input type="submit" value="Submit" />
|
||||
</form>
|
||||
|
||||
|
||||
<button id="clear">Remove all autocompletes</button>
|
||||
|
||||
<h3>Result:</h3> <ol id="result"></ol>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,216 +0,0 @@
|
||||
var months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
|
||||
var emails = [
|
||||
{ name: "Peter Pan", to: "peter@pan.de" },
|
||||
{ name: "Molly", to: "molly@yahoo.com" },
|
||||
{ name: "Forneria Marconi", to: "live@japan.jp" },
|
||||
{ name: "Master <em>Sync</em>", to: "205bw@samsung.com" },
|
||||
{ name: "Dr. <strong>Tech</strong> de Log", to: "g15@logitech.com" },
|
||||
{ name: "Don Corleone", to: "don@vegas.com" },
|
||||
{ name: "Mc Chick", to: "info@donalds.org" },
|
||||
{ name: "Donnie Darko", to: "dd@timeshift.info" },
|
||||
{ name: "Quake The Net", to: "webmaster@quakenet.org" },
|
||||
{ name: "Dr. Write", to: "write@writable.com" }
|
||||
];
|
||||
var cities = [
|
||||
"Aberdeen", "Ada", "Adamsville", "Addyston", "Adelphi", "Adena", "Adrian", "Akron",
|
||||
"Albany", "Alexandria", "Alger", "Alledonia", "Alliance", "Alpha", "Alvada",
|
||||
"Alvordton", "Amanda", "Amelia", "Amesville", "Amherst", "Amlin", "Amsden",
|
||||
"Amsterdam", "Andover", "Anna", "Ansonia", "Antwerp", "Apple Creek", "Arcadia",
|
||||
"Arcanum", "Archbold", "Arlington", "Ashland", "Ashley", "Ashtabula", "Ashville",
|
||||
"Athens", "Attica", "Atwater", "Augusta", "Aurora", "Austinburg", "Ava", "Avon",
|
||||
"Avon Lake", "Bainbridge", "Bakersville", "Baltic", "Baltimore", "Bannock",
|
||||
"Barberton", "Barlow", "Barnesville", "Bartlett", "Barton", "Bascom", "Batavia",
|
||||
"Bath", "Bay Village", "Beach City", "Beachwood", "Beallsville", "Beaver",
|
||||
"Beaverdam", "Bedford", "Bellaire", "Bellbrook", "Belle Center", "Belle Valley",
|
||||
"Bellefontaine", "Bellevue", "Bellville", "Belmont", "Belmore", "Beloit", "Belpre",
|
||||
"Benton Ridge", "Bentonville", "Berea", "Bergholz", "Berkey", "Berlin",
|
||||
"Berlin Center", "Berlin Heights", "Bethel", "Bethesda", "Bettsville", "Beverly",
|
||||
"Bidwell", "Big Prairie", "Birmingham", "Blacklick", "Bladensburg", "Blaine",
|
||||
"Blakeslee", "Blanchester", "Blissfield", "Bloomdale", "Bloomingburg",
|
||||
"Bloomingdale", "Bloomville", "Blue Creek", "Blue Rock", "Bluffton",
|
||||
"Bolivar", "Botkins", "Bourneville", "Bowerston", "Bowersville",
|
||||
"Bowling Green", "Bradford", "Bradner", "Brady Lake", "Brecksville",
|
||||
"Bremen", "Brewster", "Brice", "Bridgeport", "Brilliant", "Brinkhaven",
|
||||
"Bristolville", "Broadview Heights", "Broadway", "Brookfield", "Brookpark",
|
||||
"Brookville", "Brownsville", "Brunswick", "Bryan", "Buchtel", "Buckeye Lake",
|
||||
"Buckland", "Bucyrus", "Buffalo", "Buford", "Burbank", "Burghill", "Burgoon",
|
||||
"Burkettsville", "Burton", "Butler", "Byesville", "Cable", "Cadiz", "Cairo",
|
||||
"Caldwell", "Caledonia", "Cambridge", "Camden", "Cameron", "Camp Dennison",
|
||||
"Campbell", "Canal Fulton", "Canal Winchester", "Canfield", "Canton", "Carbon Hill",
|
||||
"Carbondale", "Cardington", "Carey", "Carroll", "Carrollton", "Casstown",
|
||||
"Castalia", "Catawba", "Cecil", "Cedarville", "Celina", "Centerburg",
|
||||
"Chagrin Falls", "Chandlersville", "Chardon", "Charm", "Chatfield", "Chauncey",
|
||||
"Cherry Fork", "Chesapeake", "Cheshire", "Chester", "Chesterhill", "Chesterland",
|
||||
"Chesterville", "Chickasaw", "Chillicothe", "Chilo", "Chippewa Lake",
|
||||
"Christiansburg", "Cincinnati", "Circleville", "Clarington", "Clarksburg",
|
||||
"Clarksville", "Clay Center", "Clayton", "Cleveland", "Cleves", "Clifton",
|
||||
"Clinton", "Cloverdale", "Clyde", "Coal Run", "Coalton", "Coldwater", "Colerain",
|
||||
"College Corner", "Collins", "Collinsville", "Colton", "Columbia Station",
|
||||
"Columbiana", "Columbus", "Columbus Grove", "Commercial Point", "Conesville",
|
||||
"Conneaut", "Conover", "Continental", "Convoy", "Coolville", "Corning", "Cortland",
|
||||
"Coshocton", "Covington", "Creola", "Crestline", "Creston", "Crooksville",
|
||||
"Croton", "Crown City", "Cuba", "Cumberland", "Curtice", "Custar", "Cutler",
|
||||
"Cuyahoga Falls", "Cygnet", "Cynthiana", "Dalton", "Damascus", "Danville",
|
||||
"Dayton", "De Graff", "Decatur", "Deerfield", "Deersville", "Defiance",
|
||||
"Delaware", "Dellroy", "Delphos", "Delta", "Dennison", "Derby", "Derwent",
|
||||
"Deshler", "Dexter City", "Diamond", "Dillonvale", "Dola", "Donnelsville",
|
||||
"Dorset", "Dover", "Doylestown", "Dresden", "Dublin", "Dunbridge", "Duncan Falls",
|
||||
"Dundee", "Dunkirk", "Dupont", "East Claridon", "East Fultonham",
|
||||
"East Liberty", "East Liverpool", "East Palestine", "East Rochester",
|
||||
"East Sparta", "East Springfield", "Eastlake", "Eaton", "Edgerton", "Edison",
|
||||
"Edon", "Eldorado", "Elgin", "Elkton", "Ellsworth", "Elmore", "Elyria",
|
||||
"Empire", "Englewood", "Enon", "Etna", "Euclid", "Evansport", "Fairborn",
|
||||
"Fairfield", "Fairpoint", "Fairview", "Farmdale", "Farmer", "Farmersville",
|
||||
"Fayette", "Fayetteville", "Feesburg", "Felicity", "Findlay", "Flat Rock",
|
||||
"Fleming", "Fletcher", "Flushing", "Forest", "Fort Jennings", "Fort Loramie",
|
||||
"Fort Recovery", "Fostoria", "Fowler", "Frankfort", "Franklin",
|
||||
"Franklin Furnace", "Frazeysburg", "Fredericksburg", "Fredericktown",
|
||||
"Freeport", "Fremont", "Fresno", "Friendship", "Fulton", "Fultonham",
|
||||
"Galena", "Galion", "Gallipolis", "Galloway", "Gambier", "Garrettsville",
|
||||
"Gates Mills", "Geneva", "Genoa", "Georgetown", "Germantown", "Gettysburg",
|
||||
"Gibsonburg", "Girard", "Glandorf", "Glencoe", "Glenford", "Glenmont",
|
||||
"Glouster", "Gnadenhutten", "Gomer", "Goshen", "Grafton", "Grand Rapids",
|
||||
"Grand River", "Granville", "Gratiot", "Gratis", "Graysville", "Graytown",
|
||||
"Green", "Green Camp", "Green Springs", "Greenfield", "Greenford",
|
||||
"Greentown", "Greenville", "Greenwich", "Grelton", "Grove City",
|
||||
"Groveport", "Grover Hill", "Guysville", "Gypsum", "Hallsville",
|
||||
"Hamden", "Hamersville", "Hamilton", "Hamler", "Hammondsville",
|
||||
"Hannibal", "Hanoverton", "Harbor View", "Harlem Springs", "Harpster",
|
||||
"Harrisburg", "Harrison", "Harrisville", "Harrod", "Hartford", "Hartville",
|
||||
"Harveysburg", "Haskins", "Haverhill", "Haviland", "Haydenville", "Hayesville",
|
||||
"Heath", "Hebron", "Helena", "Hicksville", "Higginsport", "Highland", "Hilliard",
|
||||
"Hillsboro", "Hinckley", "Hiram", "Hockingport", "Holgate", "Holland",
|
||||
"Hollansburg", "Holloway", "Holmesville", "Homer", "Homerville", "Homeworth",
|
||||
"Hooven", "Hopedale", "Hopewell", "Houston", "Howard", "Hoytville", "Hubbard",
|
||||
"Hudson", "Huntsburg", "Huntsville", "Huron", "Iberia", "Independence",
|
||||
"Irondale", "Ironton", "Irwin", "Isle Saint George", "Jackson", "Jackson Center",
|
||||
"Jacksontown", "Jacksonville", "Jacobsburg", "Jamestown", "Jasper",
|
||||
"Jefferson", "Jeffersonville", "Jenera", "Jeromesville", "Jerry City",
|
||||
"Jerusalem", "Jewell", "Jewett", "Johnstown", "Junction City", "Kalida",
|
||||
"Kansas", "Keene", "Kelleys Island", "Kensington", "Kent", "Kenton",
|
||||
"Kerr", "Kettlersville", "Kidron", "Kilbourne", "Killbuck", "Kimbolton",
|
||||
"Kings Mills", "Kingston", "Kingsville", "Kinsman", "Kipling", "Kipton",
|
||||
"Kirby", "Kirkersville", "Kitts Hill", "Kunkle", "La Rue", "Lacarne",
|
||||
"Lafayette", "Lafferty", "Lagrange", "Laings", "Lake Milton", "Lakemore",
|
||||
"Lakeside Marblehead", "Lakeview", "Lakeville", "Lakewood", "Lancaster",
|
||||
"Langsville", "Lansing", "Latham", "Latty", "Laura", "Laurelville",
|
||||
"Leavittsburg", "Lebanon", "Lees Creek", "Leesburg", "Leesville",
|
||||
"Leetonia", "Leipsic", "Lemoyne", "Lewis Center", "Lewisburg",
|
||||
"Lewistown", "Lewisville", "Liberty Center", "Lima", "Limaville",
|
||||
"Lindsey", "Lisbon", "Litchfield", "Lithopolis", "Little Hocking",
|
||||
"Lockbourne", "Lodi", "Logan", "London", "Londonderry",
|
||||
"Long Bottom", "Lorain", "Lore City", "Loudonville", "Louisville",
|
||||
"Loveland", "Lowell", "Lowellville", "Lower Salem", "Lucas",
|
||||
"Lucasville", "Luckey", "Ludlow Falls", "Lynchburg", "Lynx",
|
||||
"Lyons", "Macedonia", "Macksburg", "Madison", "Magnetic Springs",
|
||||
"Magnolia", "Maineville", "Malaga", "Malinta", "Malta", "Malvern",
|
||||
"Manchester", "Mansfield", "Mantua", "Maple Heights", "Maplewood",
|
||||
"Marathon", "Marengo", "Maria Stein", "Marietta", "Marion",
|
||||
"Mark Center", "Marshallville", "Martel", "Martin", "Martins Ferry",
|
||||
"Martinsburg", "Martinsville", "Marysville", "Mason", "Massillon",
|
||||
"Masury", "Maumee", "Maximo", "Maynard", "Mc Arthur", "Mc Clure",
|
||||
"Mc Comb", "Mc Connelsville", "Mc Cutchenville", "Mc Dermott",
|
||||
"Mc Donald", "Mc Guffey", "Mechanicsburg", "Mechanicstown",
|
||||
"Medina", "Medway", "Melmore", "Melrose", "Mendon", "Mentor",
|
||||
"Mesopotamia", "Metamora", "Miamisburg", "Miamitown", "Miamiville",
|
||||
"Middle Bass", "Middle Point", "Middlebranch", "Middleburg",
|
||||
"Middlefield", "Middleport", "Middletown", "Midland", "Midvale",
|
||||
"Milan", "Milford", "Milford Center", "Millbury", "Milledgeville",
|
||||
"Miller City", "Millersburg", "Millersport", "Millfield",
|
||||
"Milton Center", "Mineral City", "Mineral Ridge", "Minerva",
|
||||
"Minford", "Mingo", "Mingo Junction", "Minster", "Mogadore",
|
||||
"Monclova", "Monroe", "Monroeville", "Montezuma", "Montpelier",
|
||||
"Montville", "Morral", "Morristown", "Morrow", "Moscow",
|
||||
"Mount Blanchard", "Mount Cory", "Mount Eaton", "Mount Gilead",
|
||||
"Mount Hope", "Mount Liberty", "Mount Orab", "Mount Perry",
|
||||
"Mount Pleasant", "Mount Saint Joseph", "Mount Sterling",
|
||||
"Mount Vernon", "Mount Victory", "Mowrystown", "Moxahala",
|
||||
"Munroe Falls", "Murray City", "Nankin", "Napoleon", "Nashport",
|
||||
"Nashville", "Navarre", "Neapolis", "Neffs", "Negley",
|
||||
"Nelsonville", "Nevada", "Neville", "New Albany", "New Athens",
|
||||
"New Bavaria", "New Bloomington", "New Bremen", "New Carlisle",
|
||||
"New Concord", "New Hampshire", "New Haven", "New Holland",
|
||||
"New Knoxville", "New Lebanon", "New Lexington", "New London",
|
||||
"New Madison", "New Marshfield", "New Matamoras", "New Middletown",
|
||||
"New Paris", "New Philadelphia", "New Plymouth", "New Richmond",
|
||||
"New Riegel", "New Rumley", "New Springfield", "New Straitsville",
|
||||
"New Vienna", "New Washington", "New Waterford", "New Weston",
|
||||
"Newark", "Newbury", "Newcomerstown", "Newport", "Newton Falls",
|
||||
"Newtonsville", "Ney", "Niles", "North Baltimore", "North Bend",
|
||||
"North Benton", "North Bloomfield", "North Fairfield",
|
||||
"North Georgetown", "North Hampton", "North Jackson",
|
||||
"North Kingsville", "North Lawrence", "North Lewisburg",
|
||||
"North Lima", "North Olmsted", "North Ridgeville", "North Robinson",
|
||||
"North Royalton", "North Star", "Northfield", "Northwood", "Norwalk",
|
||||
"Norwich", "Nova", "Novelty", "Oak Harbor", "Oak Hill", "Oakwood",
|
||||
"Oberlin", "Oceola", "Ohio City", "Okeana", "Okolona", "Old Fort",
|
||||
"Old Washington", "Olmsted Falls", "Ontario", "Orangeville",
|
||||
"Oregon", "Oregonia", "Orient", "Orrville", "Orwell", "Osgood",
|
||||
"Ostrander", "Ottawa", "Ottoville", "Otway", "Overpeck",
|
||||
"Owensville", "Oxford", "Painesville", "Palestine", "Pandora",
|
||||
"Paris", "Parkman", "Pataskala", "Patriot", "Paulding", "Payne",
|
||||
"Pedro", "Peebles", "Pemberton", "Pemberville", "Peninsula",
|
||||
"Perry", "Perrysburg", "Perrysville", "Petersburg", "Pettisville",
|
||||
"Phillipsburg", "Philo", "Pickerington", "Piedmont", "Pierpont",
|
||||
"Piketon", "Piney Fork", "Pioneer", "Piqua", "Pitsburg",
|
||||
"Plain City", "Plainfield", "Pleasant City", "Pleasant Hill",
|
||||
"Pleasant Plain", "Pleasantville", "Plymouth", "Polk",
|
||||
"Pomeroy", "Port Clinton", "Port Jefferson", "Port Washington",
|
||||
"Port William", "Portage", "Portland", "Portsmouth", "Potsdam",
|
||||
"Powell", "Powhatan Point", "Proctorville", "Prospect", "Put in Bay",
|
||||
"Quaker City", "Quincy", "Racine", "Radnor", "Randolph", "Rarden",
|
||||
"Ravenna", "Rawson", "Ray", "Rayland", "Raymond", "Reedsville",
|
||||
"Reesville", "Reno", "Republic", "Reynoldsburg", "Richfield",
|
||||
"Richmond", "Richmond Dale", "Richwood", "Ridgeville Corners",
|
||||
"Ridgeway", "Rio Grande", "Ripley", "Risingsun", "Rittman",
|
||||
"Robertsville", "Rock Camp", "Rock Creek", "Rockbridge", "Rockford",
|
||||
"Rocky Ridge", "Rocky River", "Rogers", "Rome", "Rootstown", "Roseville",
|
||||
"Rosewood", "Ross", "Rossburg", "Rossford", "Roundhead", "Rudolph",
|
||||
"Rushsylvania", "Rushville", "Russells Point", "Russellville", "Russia",
|
||||
"Rutland", "Sabina", "Saint Clairsville", "Saint Henry", "Saint Johns",
|
||||
"Saint Louisville", "Saint Marys", "Saint Paris", "Salem", "Salesville",
|
||||
"Salineville", "Sandusky", "Sandyville", "Sarahsville", "Sardinia",
|
||||
"Sardis", "Savannah", "Scio", "Scioto Furnace", "Scott", "Scottown",
|
||||
"Seaman", "Sebring", "Sedalia", "Senecaville", "Seven Mile", "Seville",
|
||||
"Shade", "Shadyside", "Shandon", "Sharon Center", "Sharpsburg",
|
||||
"Shauck", "Shawnee", "Sheffield Lake", "Shelby", "Sherrodsville",
|
||||
"Sherwood", "Shiloh", "Short Creek", "Shreve", "Sidney", "Sinking Spring",
|
||||
"Smithfield", "Smithville", "Solon", "Somerdale", "Somerset",
|
||||
"Somerville", "South Bloomingville", "South Charleston", "South Lebanon",
|
||||
"South Point", "South Salem", "South Solon", "South Vienna",
|
||||
"South Webster", "Southington", "Sparta", "Spencer", "Spencerville",
|
||||
"Spring Valley", "Springboro", "Springfield", "Stafford", "Sterling",
|
||||
"Steubenville", "Stewart", "Stillwater", "Stockdale", "Stockport",
|
||||
"Stone Creek", "Stony Ridge", "Stout", "Stoutsville", "Stow", "Strasburg",
|
||||
"Stratton", "Streetsboro", "Strongsville", "Struthers", "Stryker",
|
||||
"Sugar Grove", "Sugarcreek", "Sullivan", "Sulphur Springs", "Summerfield",
|
||||
"Summit Station", "Summitville", "Sunbury", "Swanton", "Sycamore",
|
||||
"Sycamore Valley", "Sylvania", "Syracuse", "Tallmadge", "Tarlton",
|
||||
"Terrace Park", "The Plains", "Thompson", "Thornville", "Thurman",
|
||||
"Thurston", "Tiffin", "Tiltonsville", "Tipp City", "Tippecanoe", "Tiro",
|
||||
"Toledo", "Tontogany", "Torch", "Toronto", "Tremont City", "Trenton",
|
||||
"Trimble", "Trinway", "Troy", "Tuppers Plains", "Tuscarawas", "Twinsburg",
|
||||
"Uhrichsville", "Union City", "Union Furnace", "Unionport", "Uniontown",
|
||||
"Unionville", "Unionville Center", "Uniopolis", "Upper Sandusky", "Urbana",
|
||||
"Utica", "Valley City", "Van Buren", "Van Wert", "Vandalia", "Vanlue",
|
||||
"Vaughnsville", "Venedocia", "Vermilion", "Verona", "Versailles",
|
||||
"Vickery", "Vienna", "Vincent", "Vinton", "Wadsworth", "Wakefield",
|
||||
"Wakeman", "Walbridge", "Waldo", "Walhonding", "Walnut Creek", "Wapakoneta",
|
||||
"Warnock", "Warren", "Warsaw", "Washington Court House",
|
||||
"Washingtonville", "Waterford", "Waterloo", "Watertown", "Waterville",
|
||||
"Wauseon", "Waverly", "Wayland", "Wayne", "Waynesburg", "Waynesfield",
|
||||
"Waynesville", "Wellington", "Wellston", "Wellsville", "West Alexandria",
|
||||
"West Chester", "West Elkton", "West Farmington", "West Jefferson",
|
||||
"West Lafayette", "West Liberty", "West Manchester", "West Mansfield",
|
||||
"West Millgrove", "West Milton", "West Point", "West Portsmouth",
|
||||
"West Rushville", "West Salem", "West Union", "West Unity", "Westerville",
|
||||
"Westfield Center", "Westlake", "Weston", "Westville", "Wharton",
|
||||
"Wheelersburg", "Whipple", "White Cottage", "Whitehouse", "Wickliffe",
|
||||
"Wilberforce", "Wilkesville", "Willard", "Williamsburg", "Williamsfield",
|
||||
"Williamsport", "Williamstown", "Williston", "Willoughby", "Willow Wood",
|
||||
"Willshire", "Wilmington", "Wilmot", "Winchester", "Windham", "Windsor",
|
||||
"Winesburg", "Wingett Run", "Winona", "Wolf Run", "Woodsfield",
|
||||
"Woodstock", "Woodville", "Wooster", "Wren", "Xenia", "Yellow Springs",
|
||||
"Yorkshire", "Yorkville", "Youngstown", "Zaleski", "Zanesfield", "Zanesville",
|
||||
"Zoar"
|
||||
];
|