|
|
(16 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| + | <metadesc>List of Kappa Kappa Gamma chapters founded in 1870 to present date.</metadesc> |
| + | <div style="text-align:right;"><span style="margin-right:5px;position:relative;top:14px;">Excel Export:</span>[[File:Excel-logo-40x40.png|link=https://wiki.kkg.org/htmlets/ChapterExport.php]]</div> |
| List of Kappa Kappa Gamma chapters founded in 1870 to present date: | | List of Kappa Kappa Gamma chapters founded in 1870 to present date: |
| + | <br /> |
| | | |
− | <html> | + | <htmlet nocache="yes">chapter_list</htmlet> |
− | <script>
| |
− | var chapters = new Array();
| |
− | function chapter(chapterName, foundingDate, location) {
| |
− | this.ChapterName = chapterName;
| |
− | this.FoundingDate = parseInt(parseFloat(foundingDate));
| |
− | this.Location = location;
| |
− | }
| |
− | function drawArray(form) {
| |
− | var v = "<table style='width:100%;'>";
| |
− | for (var i=0; i<chapters.length; i++) {
| |
− | v += "<tr><td width='300'><a href='http://wiki.kappakappagamma.org/index.php/" + chapters[i].ChapterName + "'>" + chapters[i].ChapterName + "</a></td><td width='200'>" + chapters[i].FoundingDate + "</td><td>" + chapters[i].Location + "<br>";
| |
− | }
| |
− | document.getElementById('list').innerHTML = v + "</table>"
| |
− | }
| |
− | window.onload = function(){
| |
− | | |
− | chapters[chapters.length++] = new chapter("Alpha", 1870, "Monmouth College, Monmouth, IL");
| |
− | chapters[chapters.length++] = new chapter("Beta", 1871, "St. Mary's School, Knoxville, IL");
| |
− | chapters[chapters.length++] = new chapter("Gamma", 1872, "Smithson College, Logansport, IN");
| |
− | chapters[chapters.length++] = new chapter("Delta", 1872, "Indiana University, Bloomington, IN");
| |
− | chapters[chapters.length++] = new chapter("Epsilon", 1873, "Illinios Wesleyan University, Bloomington, IL");
| |
− | chapters[chapters.length++] = new chapter("Zeta", 1874, "Rockford Female Seminary, Rockford, IL");
| |
− | chapters[chapters.length++] = new chapter("Eta", 1875, "Wisconsin, University of, Columbia, MO");
| |
− | chapters[chapters.length++] = new chapter("Theta", 1875, "Missouri, University of, Columbia, MO");
| |
− | chapters[chapters.length++] = new chapter("Iota", 1875, "DePauw University, Greencastle, IN");
| |
− | chapters[chapters.length++] = new chapter("Kappa", 1881, "Hillsdale College, Hillsdale, MI");
| |
− | chapters[chapters.length++] = new chapter("Lambda", 1877, "Akron, University of, Akron, OH");
| |
− | chapters[chapters.length++] = new chapter("Mu", 1878, "Butler University, Indianapolis, IN");
| |
− | chapters[chapters.length++] = new chapter("Nu", 1879, "Franklin College, Franklin, IN");
| |
− | chapters[chapters.length++] = new chapter("Xi", 1882, "Adrian College, Adrian, MI");
| |
− | chapters[chapters.length++] = new chapter("Omicron", 1880, "Simpson College, Indianola, IA");
| |
− | chapters[chapters.length++] = new chapter("Pi", 1880, "California, U. of, Berkeley, Berkeley, CA");
| |
− | chapters[chapters.length++] = new chapter("Rho", 1880, "Ohio Wesleyan University, Delaware, OH");
| |
− | chapters[chapters.length++] = new chapter("Sigma", 1884, "Nebraska, University of, Lincoln, NE");
| |
− | chapters[chapters.length++] = new chapter("Tau", 1881, "Lasell Seminary, Auburndale, MA");
| |
− | chapters[chapters.length++] = new chapter("Upsilon", 1882, "Northwestern University, Evanston, IL");
| |
− | chapters[chapters.length++] = new chapter("Phi", 1882, "Boston University, Boston, MA");
| |
− | chapters[chapters.length++] = new chapter("Chi", 1880, "Minnesota, University of, Minneapolis, MN");
| |
− | chapters[chapters.length++] = new chapter("Psi", 1883, "Cornell University, Ithaca, NY");
| |
− | chapters[chapters.length++] = new chapter("Omega", 1883, "Kansas, University of, Lawrence, KS");
| |
− | drawArray();
| |
− | | |
− | }
| |
− | | |
− | function sortByChapterName(a, b) {
| |
− | var x = a.ChapterName.toLowerCase();
| |
− | var y = b.ChapterName.toLowerCase();
| |
− | return ((x < y) ? -1 : ((x > y) ? 1 : 0));
| |
− | }
| |
− | function sortByLocation(a, b) {
| |
− | var x = a.Location.toLowerCase();
| |
− | var y = b.Location.toLowerCase();
| |
− | return ((x < y) ? -1 : ((x > y) ? 1 : 0));
| |
− | }
| |
− | function sortByLastNameThenFirst(a, b) {
| |
− | var x = a.LastName.toLowerCase();
| |
− | var y = b.LastName.toLowerCase();
| |
− | return ((x < y) ? -1 : ((x > y) ? 1 : sortByFirstName(a, b)));
| |
− | }
| |
− | function sortByFoundingDate(a, b) {
| |
− | var x = a.FoundingDate;
| |
− | var y = b.FoundingDate;
| |
− | return ((x < y) ? -1 : ((x > y) ? 1 : 0));
| |
− | }
| |
− | function sortArray(form, column) {
| |
− | if (chapters.length == 0) {
| |
− | alert("Please add one or more people before sorting!");
| |
− | return false;
| |
− | }
| |
− | switch (column) {
| |
− | case 1 :
| |
− | chapters.sort(sortByChapterName);
| |
− | break;
| |
− | case 2 :
| |
− | chapters.sort(sortByFoundingDate);
| |
− | break;
| |
− | case 3 :
| |
− | chapters.sort(sortByLocation);
| |
− | break;
| |
− | case 4 :
| |
− | chapters.sort(sortByLastNameThenFirst);
| |
− | break;
| |
− | }
| |
− | drawArray(form);
| |
− | }
| |
− | // -->
| |
− | </script>
| |
− | <table style='width:100%'><tr>
| |
− | <td><div class="chapternav" onclick="sortArray(document.forms['Demo'], 1)">Chapter Name</div></td>
| |
− | <td><div class="chapternav" onclick="sortArray(document.forms['Demo'], 2)">Founding Date</div></td>
| |
− | <td><div class="chapternav" onclick="sortArray(document.forms['Demo'], 3)">Location</div></td>
| |
− | </tr></table>
| |
− | </html>
| |
− | ----
| |
− | | |
− | <div id="list">test</div>
| |
− | [[Alpha]] Deuteron <br>
| |
− | [[Beta]] <br>
| |
− | [[Gamma]] <br>
| |
− | [[Delta]] <br>
| |
− | [[Epsilon]] <br>
| |
− | [[Zeta]] <br>
| |
− | [[Eta]] <br>
| |
− | [[Iota]] <br>
| |
− | [[Theta]] <br>
| |
− | [[Beta Gamma]] <br>
| |
− | [[Lambda]] <br>
| |
− | [[Mu]] <br>
| |
− | [[Nu]] <br>
| |
− | [[Omicron]] Deuteron <br>
| |
− | [[Chi]] <br>
| |
− | [[Pi]] Deuteron <br>
| |
− | [[Rho]] Deuteron <br>
| |
− | [[Tau]] <br>
| |
− | [[Kappa]] <br>
| |
− | [[Beta Beta]] Deuteron <br>
| |
− | [[Upsilon]] <br>
| |
− | [[Beta Zeta]] <br>
| |
− | [[Phi]] <br>
| |
− | [[Xi]] <Br>
| |
− | [[Beta Tau]] <br>
| |
− | [[Psi]] Deuteron <br>
| |
− | [[Omega]] <br>
| |
− | [[Sigma]] <br>
| |
− | [[Beta Rho]] Deuteron <br>
| |
− | [[Gamma Rho]] <br>
| |
− | [[Beta Nu]] <br>
| |
− | [[Beta Alpha]] <br>
| |
− | [[Beta Delta]] <br>
| |
− | [[Beta Epsilon]] <br>
| |
− | [[Beta Eta]] Deuteron <br>
| |
− | [[Beta Iota]] <br>
| |
− | [[Beta Lambda]] <br>
| |
− | [[Beta Mu]] <br>
| |
− | [[Beta Xi]] <br>
| |