Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Related items

JavaScript Y2K Issues

And now...The Weekly Update Script

The 24 Hour World

Today's The Day

Extending "Born of the 4th of July"

Easter

The 3rd Saturday in November

The Chinese New Year

What sign are you?

Monday's child is full of grace

Born on the 4th of July- source

You are here: irt.org | Articles | JavaScript | Date and Time | Born on the 4th of July [ previous next ]

Published on: Saturday 8th November 1997 By: Martin Webb

Return

frame.htm

<HTML><HEAD>

<SCRIPT LANGUAGE="JavaScript"><!--
function y2k(number)    { return (number < 1000) ? number + 1900 : number; }

var today = new Date();
var year = y2k(today.getYear());
var month = today.getMonth()+1;
var day = today.getDate();

var thisYear = year;
var thisMonth = month;
var thisDay = day;
//--></SCRIPT>

<FRAMESET ROWS="50%,50%">
    <FRAME SCROLLING=NO  FRAMEBORDER=0 BORDER=0 NORESIZE SRC="input.htm">
    <FRAME SCROLLING=YES FRAMEBORDER=0 BORDER=0 NORESIZE SRC="blank.htm" NAME="outputFrame">
</FRAMESET>

</HEAD></HTML>

Return

blank.htm

<BODY></BODY>

Return

input.htm

<HTML><HEAD>

<SCRIPT LANGUAGE="JavaScript"><!--
function makeArray()    {
    this[0] = makeArray.arguments.length;
    for (i = 0; i<makeArray.arguments.length; i++)
        this[i+1] = makeArray.arguments[i];
}

var daysofmonth   = new makeArray( 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
var daysofmonthLY = new makeArray( 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
var monthsofyear  = new makeArray('January','February','March','April','May','June','July','August','September','October','November','December');

function LeapYear(year) {
    if ((year/4)   != Math.floor(year/4))   return false;
    if ((year/100) != Math.floor(year/100)) return true;
    if ((year/400) != Math.floor(year/400)) return false;
    return true;
}

function ValidDate(day,month,year) {
    if ( (LeapYear(year) && (day > daysofmonthLY[month])) ||
         (!LeapYear(year) && (day > daysofmonth[month])) )
        return false;
    else
        return true;
}

function ChosenDate(object) {
    year = object.year.value;
    month = object.month.options[object.month.selectedIndex].value;
    day = object.day.options[object.day.selectedIndex].value;

    if (!ValidDate(day-0,month-0,year-0)) {
        alert('You must enter a valid date');
        return false;
    }

    if (parent.location.href != window.location.href) {
        parent.year = year;
        parent.month = month;
        parent.day = day;
        parent.outputFrame.location.href = 'output.htm';
    }
    else {
        return true;
    }

    return false;
}

function y2k(number)    { return (number < 1000) ? number + 1900 : number; }

function padout(number) { return (number < 10) ? '0' + number : number; }

var today = new Date();
var thisYear = y2k(today.getYear());
var thisMonth = today.getMonth()+1;
var thisDay = today.getDate();

var dayOutput = '';
for (var days=1; days <= 31; days++) {
    if (days == thisDay) dayOutput += '<OPTION VALUE="' + padout(days) + '" SELECTED>' + days;
    else             dayOutput += '<OPTION VALUE="' + padout(days) + '">' + days;
}

var monthOutput = '';
for (var months=1; months <=12; months++) {
    if (months == thisMonth) monthOutput += '<OPTION VALUE="' + padout(months) + '" SELECTED>' + monthsofyear[months];
    else                 monthOutput += '<OPTION VALUE="' + padout(months) + '">' + monthsofyear[months];
}

var yearOutput = '<INPUT TYPE="TEXT" NAME="year" SIZE="4" VALUE="' + thisYear + '">';
//--></SCRIPT>

</HEAD>

<BODY><FONT FACE="ARIAL,HELVETICA"><CENTER>

<H2>Select your date of birth:</H2>

<FORM NAME="inputDateForm" ACTION="output.htm" onSubmit="return ChosenDate(document.inputDateForm);">

Day: <SELECT NAME="day">
<SCRIPT LANGUAGE="JavaScript"><!--
document.write(dayOutput);
//--></SCRIPT>
</SELECT>

Month: <SELECT NAME="month">
<SCRIPT LANGUAGE="JavaScript"><!--
document.write(monthOutput);
//--></SCRIPT>
</SELECT>

Year:
<SCRIPT LANGUAGE="JavaScript"><!--
document.write(yearOutput);
//--></SCRIPT>

<INPUT TYPE="SUBMIT" VALUE="Show">
</FORM>

<A HREF="index.htm" TARGET="_parent">Return</A>

</CENTER></FONT></BODY>

</HTML>

Return

output.htm

<HTML>
<HEAD>

<SCRIPT LANGUAGE="JavaScript"><!--
function y2k(number)    { return (number < 1000) ? number + 1900 : number; }

function makeArray() {
    this[0] = makeArray.arguments.length;
    for (i = 0; i<makeArray.arguments.length; i++)
        this[i+1] = makeArray.arguments[i];
}

var daysofweek   = new makeArray('Sunday',
                                 'Monday',
                                 'Tuesday',
                                 'Wednesday',
                                 'Thursday',
                                 'Friday',
                                 'Saturday');

var monthsofyear = new makeArray('January',
                                 'February',
                                 'March',
                                 'April',
                                 'May',
                                 'June',
                                 'July',
                                 'August',
                                 'September',
                                 'October',
                                 'November',
                                 'December');

var months       = new makeArray('jan',
                                 'feb',
                                 'mar',
                                 'apr',
                                 'may',
                                 'jun',
                                 'jul',
                                 'aug',
                                 'sep',
                                 'oct',
                                 'nov',
                                 'dec');

function DayOfWeek(day,month,year) {
    var a = Math.floor((14 - month)/12);
    var y = year - a;
    var m = month + 12*a - 2;
    var d = (day + y + Math.floor(y/4) - Math.floor(y/100) + Math.floor(y/400) + Math.floor((31*m)/12)) % 7;
    return d+1;
}

function Nths(day) { 
    if (day == 1 || day == 21 || day == 31) return 'st';
    if (day == 2 || day == 22) return 'nd';
    if (day == 3 || day == 23) return 'rd';
    return 'th';
}

function FullDate(day,month,year) {
    return daysofweek[DayOfWeek(day,month,year)] +' '+ day + Nths(day) +' '+ monthsofyear[month] +' '+ year;
}

function Event(day,month,what) {
    this.day = day;
    this.month = month;
    this.what = what;
}

function setEvent(day,month,what) {
    myEvent[eventIndex++] = new Event(day,month,what);
}

var eventIndex = 0;
var myEvent = new Array();

setEvent( 1, 1,"New Year's Day");
setEvent( 1, 1,"Mary - Mother of God");
setEvent( 6, 1,"Epiphany");
setEvent( 2, 2,"Groundhog Day");
setEvent(12, 2,"Lincoln's Birthday");
setEvent(14, 2,"Valentine's Day");
setEvent(22, 2,"Washington's Birthday");
setEvent(29, 2,"Leap Year's Day");
setEvent(17, 3,"St. Patrick's Day");
setEvent(19, 3,"St. Joseph");
setEvent( 1, 4,"April Fools's Day");
setEvent(15, 4,"Tax Day");
setEvent(14, 6,"Flag Day");
setEvent(29, 6,"St. Peter & St. Paul");
setEvent( 4, 7,"Independence Day");
setEvent(12, 7,"Battle of the Boyne (N. Ireland)");
setEvent(15, 8,"Assumption");
setEvent(12,10,"Columbus Day");
setEvent(24,10,"United Nations Day");
setEvent(31,10,"Halloween");
setEvent( 1,11,"All Saint's Day");
setEvent( 5,11,"Guy Fawkes Night");
setEvent(11,11,"Veteran's Day");
setEvent( 8,12,"Immaculate Conception");
setEvent(24,12,"Christmas Eve");
setEvent(25,12,"Christmas Day");
setEvent(26,12,"Boxing Day - St Stephen's Day");
setEvent(31,12,"New Year's Eve");

function showEvent(day,month) {
    var output = '';
    for(var i=0; i < eventIndex; i++) {
        if ((day == myEvent[i].day) && (month == myEvent[i].month))
            output += myEvent[i].what+'<BR>';
    }
    return output;
}

function Birthday(day,month,year,who) {
    this.day = day;
    this.month = month;
    this.year = year;
    this.who = who;
}

function setBirthday(day,month,year,who) {
    myBirthday[birthdayIndex++] = new Birthday(day,month,year,who);
}

var birthdayIndex = 0;
var myBirthday = new Array();

function showBirthday(day) {
    var output = '';
    for(var i=0; i < birthdayIndex; i++) {
        var birthDay = myBirthday[i].day;

        if (day == birthDay) {
            var birthMonth = myBirthday[i].month;
            var birthYear = myBirthday[i].year;
            var who = myBirthday[i].who;
            output += '<BR>' + who + ' (' + FullDate(birthDay,birthMonth,birthYear) + ')';
        }
    }

    if (output != '')
        output = 'Born on this day:' + output

    return output;
}

if (location.search.length == 0) {
    var year = parent.year - 0;
    var month = parent.month - 0;
    var day = parent.day - 0;
}
else {
    var day   = location.search.substring(5,7) - 0;
    var month = location.search.substring(14,16) - 0;
    var year  = location.search.substring(22) - 0;
}

var today = new Date();
var thisYear = y2k(today.getYear());
var thisMonth = today.getMonth()+1;
var thisDay = today.getDate();
//--></SCRIPT>
</HEAD>

<BODY><CENTER>

<SCRIPT LANGUAGE="JavaScript"><!--
document.write('<SCRIPT SRC="data/birth' + months[month] + '.js"></SCRIPT>');
//--></SCRIPT>

<SCRIPT LANGUAGE="JavaScript"><!--
document.write('Todays Date: '+thisDay+'/'+thisMonth+'/'+thisYear+'<BR>');
document.write('Date Entered: '+day+'/'+month+'/'+year+'<BR>');
document.write(showEvent(day,month)+'<BR>');
document.write(showBirthday(day)+'<BR>');
//--></SCRIPT>

<A HREF="index.htm" TARGET="_parent">Return</A>

</CENTER></BODY>
</HTML>

Return

birthjan.js

setBirthday(01,01,1895,"J. Edgar Hoover");
setBirthday(02,01,1920,"Isaac Asimov");
setBirthday(03,01,1892,"J.R.R. Tolkien");
setBirthday(04,01,1809,"Louis Braille");
setBirthday(05,01,1876,"Konrad Adenauer");
setBirthday(07,01,1800,"Millard Fillmore");
setBirthday(08,01,1942,"Stephen Hawking");
setBirthday(09,01,1913,"Richard Nixon");
setBirthday(11,01,1755,"Alexander Hamilton");
setBirthday(12,01,1876,"Jack London");
setBirthday(13,01,1832,"Horatio Alger");
setBirthday(14,01,1741,"Benedict Arnold");
setBirthday(15,01,1929,"Dr. Martin Luther King, Jr.");
setBirthday(16,01,1853,"Andre Michelin");
setBirthday(17,01,1706,"Ben Franklin");
setBirthday(18,01,1882,"A.A. Milne");
setBirthday(19,01,1809,"Edgar Allan Poe");
setBirthday(20,01,1930,"Edwin Aldrin");
setBirthday(21,01,1824,"Stonewall Jackson");
setBirthday(22,01,1561,"Sir Francis Bacon");
setBirthday(23,01,1832,"Edouard Manet");
setBirthday(25,01,1759,"Robert Burns");
setBirthday(26,01,1880,"Douglas MacArthur");
setBirthday(27,01,1756,"Wolfgang Amadeus Mozart");
setBirthday(28,01,1912,"Jackson Pollock");
setBirthday(29,01,1880,"W.C. Fields");
setBirthday(30,01,1882,"Franklin D. Roosevelt");

Return

birthfeb.js

setBirthday(01,02,1895,"John Ford");
setBirthday(02,02,1882,"James Joyce");
setBirthday(03,02,1468,"Johannes Gutenberg");
setBirthday(04,02,1902,"Charles Lindbergh");
setBirthday(05,02,1914,"William Burroughs");
setBirthday(06,02,1895,"Babe Ruth");
setBirthday(07,02,1812,"Charles Dickens");
setBirthday(08,02,1828,"Jules Verne");
setBirthday(09,02,1914,"Gypsy Rose Lee");
setBirthday(10,02,1955,"Greg Norman");
setBirthday(11,02,1847,"Thomas Alva Edison");
setBirthday(12,02,1809,"Abraham Lincoln");
setBirthday(13,02,1919,"Tennessee Ernie Ford");
setBirthday(14,02,1913,"Jimmy Hoffa");
setBirthday(15,02,1564,"Galileo Galilei");
setBirthday(16,02,1903,"Edgar Bergen");
setBirthday(17,02,1934,"Alan Bates");
setBirthday(18,02,1920,"Jack Palance");
setBirthday(19,02,1473,"Nicolas Copernicus");
setBirthday(20,02,1924,"Sidney Poitier");
setBirthday(21,02,1925,"Sam Peckinpah");
setBirthday(22,02,1732,"George Washington");
setBirthday(23,02,1685,"George Frederic Handel");
setBirthday(24,02,1955,"Steven Jobs");
setBirthday(25,02,1841,"Pierre Auguste Renoir");
setBirthday(26,02,1829,"Levi Strauss");
setBirthday(27,02,1932,"Elizabeth Taylor");
setBirthday(28,02,1907,"Earl Scheib");
setBirthday(29,02,1860,"Herman Hollerith");

Return

birthmar.js

setBirthday(01,03,1810,"Frederic Chopin");
setBirthday(02,03,1931,"Mikhail Gorbachev");
setBirthday(03,03,1847,"Alexander Graham Bell");
setBirthday(04,03,1888,"Knute Rockne");
setBirthday(05,03,1908,"Rex Harrison");
setBirthday(06,03,1475,"Michelangelo Buonarroti");
setBirthday(07,03,1849,"Luther Burbank");
setBirthday(08,03,1943,"Lynn Redgrave");
setBirthday(09,03,1918,"Mickey Spillane");
setBirthday(10,03,1903,"Bix Beiderbecke");
setBirthday(11,03,1931,"Rupert Murdoch");
setBirthday(12,03,1922,"Jack Kerouac");
setBirthday(13,03,1911,"L. Ron Hubbard");
setBirthday(14,03,1879,"Albert Einstein");
setBirthday(15,03,1767,"Andrew Jackson");
setBirthday(16,03,1751,"James Madison");
setBirthday(17,03,1938,"Rudolf Nureyev");
setBirthday(18,03,1932,"John Updike");
setBirthday(19,03,1848,"Wyatt Earp");
setBirthday(20,03,1957,"Spike Lee");
setBirthday(21,03,1685,"Johann Sebastian Bach");
setBirthday(22,03,1923,"Marcel Marceau");
setBirthday(23,03,1908,"Joan Crawford");
setBirthday(24,03,1874,"Harry Houdini");
setBirthday(25,03,1942,"Aretha Franklin");
setBirthday(26,03,1911,"Tennessee Williams");
setBirthday(27,03,1899,"Gloria Swanson");
setBirthday(28,03,1921,"Dirk Bogarde");
setBirthday(29,03,1867,"Cy Young");
setBirthday(30,03,1853,"Vincent Van Gogh");
setBirthday(31,03,1596,"Rene Descartes");

Return

birthapr.js

setBirthday(01,04,1926,"Anne McCaffrey");
setBirthday(02,04,1805,"Hans Christian Andersen");
setBirthday(03,04,1924,"Marlon Brando");
setBirthday(04,04,1932,"Anthony Perkins");
setBirthday(05,04,1900,"Spencer Tracy");
setBirthday(06,04,1866,"Butch Cassidy");
setBirthday(07,04,1939,"Francis Coppola");
setBirthday(08,04,1918,"Betty Ford");
setBirthday(09,04,1926,"Hugh Hefner");
setBirthday(10,04,1847,"Joseph Pulitzer");
setBirthday(12,04,1956,"Andy Garcia");
setBirthday(13,04,1743,"Thomas Jefferson");
setBirthday(14,04,1904,"John Gielgud");
setBirthday(15,04,1452,"Leonardo da Vinci");
setBirthday(16,04,1867,"Wilbur Wright");
setBirthday(17,04,1894,"Nikita Khrushchev");
setBirthday(18,04,1882,"Leopold Stokowski");
setBirthday(19,04,1949,"Paloma Picasso");
setBirthday(20,04,1889,"Adolf Hitler");
setBirthday(21,04,1926,"Elizabeth II, Queen of England");
setBirthday(22,04,1870,"Vladimir Ilyich Lenin");
setBirthday(23,04,1564,"William Shakespeare");
setBirthday(24,04,1934,"Shirley MacLaine");
setBirthday(25,04,1940,"Al Pacino");
setBirthday(26,04,1785,"John James Audubon");
setBirthday(27,04,1822,"Ulysses S. Grant");
setBirthday(28,04,1937,"Saddam Hussein");
setBirthday(29,04,1863,"William Randolph Hearst");
setBirthday(30,04,1912,"Eve Arden");

Return

birthmay.js

setBirthday(03,05,1928,"James Brown");
setBirthday(04,05,1929,"Audrey Hepburn");
setBirthday(05,05,1818,"Karl Marx");
setBirthday(06,05,1856,"Sigmund Freud");
setBirthday(07,05,1840,"Peter Ilyich Tchaikovsky");
setBirthday(08,05,1884,"Harry S. Truman");
setBirthday(09,05,1936,"Glenda Jackson");
setBirthday(10,05,1899,"Fred Astaire");
setBirthday(11,05,1904,"Salvador Dali");
setBirthday(12,05,1820,"Florence Nightingale");
setBirthday(13,05,1950,"Stevie Wonder");
setBirthday(14,05,1944,"George Lucas");
setBirthday(15,05,1909,"James Mason");
setBirthday(16,05,1905,"Henry Fonda");
setBirthday(17,05,1900,"Ayatollah Khomeini");
setBirthday(18,05,1919,"Margot Fonteyn");
setBirthday(19,05,1925,"Malcolm X");
setBirthday(20,05,1908,"Jimmy Stewart");
setBirthday(21,05,1904,"Fats Waller");
setBirthday(22,05,1859,"Sir Arthur Conan Doyle");
setBirthday(23,05,1910,"Scatman Crothers");
setBirthday(24,05,1941,"Bob Dylan");
setBirthday(25,05,1803,"Ralph W. Emerson");
setBirthday(26,05,1886,"Al Jolson");
setBirthday(27,05,1837,"Wild Bill Hickock");
setBirthday(28,05,1908,"Ian Fleming");
setBirthday(29,05,1917,"John F. Kennedy");
setBirthday(31,05,1819,"Walt Whitman");

Return

birthjun.js

setBirthday(01,06,1926,"Marilyn Monroe");
setBirthday(03,06,1808,"Jefferson Davis");
setBirthday(06,06,1875,"Thomas Mann");
setBirthday(07,06,1958,"(Formerly Known As) Prince");
setBirthday(08,06,1867,"Frank Lloyd Wright");
setBirthday(09,06,1892,"Cole Porter");
setBirthday(10,06,1922,"Judy Garland");
setBirthday(11,06,1910,"Jacques Cousteau");
setBirthday(12,06,1924,"George Bush");
setBirthday(13,06,1865,"William Butler Yeats");
setBirthday(16,06,1890,"Stan Laurel");
setBirthday(17,06,1882,"Igor Stravinski");
setBirthday(18,06,1898,"M.C. Escher");
setBirthday(19,06,1623,"Blaise Pascal");
setBirthday(21,06,1905,"Jean-Paul Sartre");
setBirthday(22,06,1949,"Meryl Streep");
setBirthday(23,06,1912,"Alan Turing");
setBirthday(25,06,1903,"George Orwell");
setBirthday(27,06,1880,"Helen Keller");
setBirthday(28,06,1902,"John Dillinger");

Return

birthjul.js

setBirthday(01,07,1916,"Olivia DeHavilland");
setBirthday(02,07,1877,"Hermann Hesse");
setBirthday(03,07,1883,"Franz Kafka");
setBirthday(04,07,1927,"Gina Lollobrigida");
setBirthday(05,07,1810,"P.T. Barnum");
setBirthday(07,07,1940,"Ringo Starr");
setBirthday(08,07,1839,"John D. Rockefeller");
setBirthday(09,07,1856,"Nicola Tesla");
setBirthday(12,07,1861,"George Washington Carver");
setBirthday(14,07,1918,"Ingmar Bergman");
setBirthday(15,07,1606,"Rembrandt Van Rijn");
setBirthday(16,07,1911,"Ginger Rogers");
setBirthday(17,07,1889,"Erle Stanley Gardner");
setBirthday(18,07,1918,"Nelson Mandela");
setBirthday(19,07,1834,"Edgar Degas");
setBirthday(20,07,1938,"Diana Rigg");
setBirthday(21,07,1899,"Ernest Hemingway");
setBirthday(22,07,1898,"Alexander Calder");
setBirthday(26,07,1856,"George Bernard Shaw");
setBirthday(28,07,1866,"Beatrix Potter");
setBirthday(29,07,1883,"Benito Mussolini");
setBirthday(30,07,1863,"Henry Ford");

Return

birthaug.js

setBirthday(02,08,1932,"Peter O'Toole");
setBirthday(04,08,1792,"Mary Wollstonecraft Shelley");
setBirthday(05,08,1930,"Neil Armstrong");
setBirthday(06,08,1928,"Andy Warhol");
setBirthday(07,08,1876,"Mata Hari");
setBirthday(08,08,1927,"Carl Switzer");
setBirthday(09,08,1896,"Jean Piaget");
setBirthday(12,08,1881,"Cecil B. DeMille");
setBirthday(13,08,1926,"Fidel Castro");
setBirthday(14,08,1945,"Steve Martin");
setBirthday(15,08,1769,"Napoleon Bonaparte");
setBirthday(16,08,1958,"Madonna"); 
setBirthday(17,08,1943,"Robert De Niro");
setBirthday(18,08,1933,"Roman Polanski");
setBirthday(19,08,1871,"Orville Wright");
setBirthday(20,08,1890,"H.P. Lovecraft");
setBirthday(21,08,1904,"Count Basie");
setBirthday(22,08,1862,"Claude Debussy");
setBirthday(23,08,1912,"Gene Kelly");
setBirthday(25,08,1918,"Leonard Bernstein");
setBirthday(27,08,1910,"Mother Teresa");
setBirthday(28,08,1774,"Elizabeth Ann Seton");
setBirthday(29,08,1915,"Ingrid Bergman");

Return

birthsep.js

setBirthday(01,09,1875,"Edgar Rice Burroughs");
setBirthday(05,09,1847,"Jesse James");
setBirthday(07,09,1533,"Elizabeth I, Queen of England");
setBirthday(08,09,1925,"Peter Sellers");
setBirthday(09,09,1941,"Otis Redding");
setBirthday(10,09,1929,"Arnold Palmer");
setBirthday(12,09,1888,"Maurice Chevalier");
setBirthday(13,09,1916,"Roald Dahl");
setBirthday(15,09,1890,"Agatha Christie");
setBirthday(16,09,1924,"Lauren Bacall");
setBirthday(17,09,1931,"Anne Bancroft");
setBirthday(18,09,1905,"Greta Garbo");
setBirthday(21,09,1866,"H.G. Wells");
setBirthday(23,09,1930,"Ray Charles");
setBirthday(24,09,1896,"F. Scott Fitzgerald");
setBirthday(25,09,1897,"William Faulkner");
setBirthday(26,09,1888,"T.S. Eliot");
setBirthday(28,09,1934,"Brigitte Bardot");
setBirthday(29,09,1547,"Miguel de Cervantes");

Return

birthoct.js

setBirthday(01,10,1920,"Walter Matthau");
setBirthday(02,10,1869,"Mahatma Gandhi");
setBirthday(03,10,1925,"Gore Vidal");
setBirthday(04,10,1895,"Buster Keaton");
setBirthday(07,10,1931,"Bishop Desmond Tutu");
setBirthday(08,10,1895,"Juan Peron");
setBirthday(09,10,1940,"John Lennon");
setBirthday(10,10,1813,"Giuseppe Verdi");
setBirthday(11,10,1884,"Eleanor Roosevelt");
setBirthday(12,10,1935,"Luciano Pavarotti");
setBirthday(13,10,1925,"Margaret Thatcher");
setBirthday(14,10,1890,"Dwight Eisenhower");
setBirthday(16,10,1854,"Oscar Wilde");
setBirthday(17,10,1918,"Rita Hayworth");
setBirthday(18,10,1939,"Lee Harvey Oswald");
setBirthday(19,10,1931,"John Le Carre");
setBirthday(20,10,1854,"Arthur Rimbaud");
setBirthday(21,10,1772,"Samuel Taylor Coleridge");
setBirthday(22,10,1811,"Franz Liszt");
setBirthday(23,10,1940,"Pele");
setBirthday(25,10,1881,"Pablo Picasso");
setBirthday(26,10,1947,"Hillary Rodham Clinton");
setBirthday(27,10,1872,"Emily Post");
setBirthday(28,10,1955,"Bill Gates");
setBirthday(29,10,1891,"Fanny Brice");
setBirthday(30,10,1735,"John Adams");
setBirthday(31,10,1795,"John Keats");

Return

birthnov.js

setBirthday(01,11,1871,"Stephen Crane");
setBirthday(02,11,1795,"James K. Polk");
setBirthday(04,11,1879,"Will Rogers");
setBirthday(05,11,1913,"Vivien Leigh");
setBirthday(06,11,1854,"John Philip Sousa");
setBirthday(07,11,1867,"Madame Curie");
setBirthday(09,11,1934,"Carl Sagan");
setBirthday(10,11,1483,"Martin Luther");
setBirthday(11,11,1922,"Kurt Vonnegut, Jr.");
setBirthday(12,11,1840,"Auguste Rodin");
setBirthday(13,11,1850,"Robert Louis Stevenson");
setBirthday(14,11,1840,"Claude Monet");
setBirthday(15,11,1887,"Georgia O'Keeffe");
setBirthday(17,11,1925,"Rock Hudson");
setBirthday(19,11,1917,"Indira Gandhi");
setBirthday(20,11,1925,"Robert F. Kennedy");
setBirthday(21,11,1694,"Jean Francois Voltaire");
setBirthday(23,11,1859,"Billy the Kid");
setBirthday(24,11,1868,"Scott Joplin");
setBirthday(25,11,1846,"Carry Nation");
setBirthday(26,11,1922,"Charles Schulz");
setBirthday(27,11,1942,"Jimi Hendrix");
setBirthday(30,11,1835,"Mark Twain");

Return

birthdec.js

setBirthday(01,12,1935,"Woody Allen");
setBirthday(03,12,1857,"Joseph Conrad");
setBirthday(04,12,1866,"Wassily Kandinsky");
setBirthday(05,12,1901,"Walt Disney");
setBirthday(06,12,1896,"Ira Gershwin");
setBirthday(08,12,1925,"Sammy Davis, Jr.");
setBirthday(09,12,1909,"Douglas Fairbanks, Jr.");
setBirthday(10,12,1830,"Emily Dickinson");
setBirthday(11,12,1882,"Fiorello La Guardia");
setBirthday(12,12,1941,"Dionne Warwick");
setBirthday(13,12,1925,"Dick Van Dyke");
setBirthday(14,12,1503,"Nostradamus");
setBirthday(15,12,1892,"J. Paul Getty");
setBirthday(16,12,1917,"Arthur C. Clarke");
setBirthday(21,12,1879,"Joseph Stalin");
setBirthday(24,12,1922,"Ava Garder");
setBirthday(25,12,1642,"Sir Isaac Newton");
setBirthday(26,12,1791,"Charles Babbage");
setBirthday(27,12,1822,"Louis Pasteur");
setBirthday(28,12,1856,"Woodrow Wilson");
setBirthday(29,12,1800,"Charles Goodyear");
setBirthday(30,12,1865,"Rudyard Kipling");
setBirthday(31,12,1869,"Henri Matisse");

Return

Related items

JavaScript Y2K Issues

And now...The Weekly Update Script

The 24 Hour World

Today's The Day

Extending "Born of the 4th of July"

Easter

The 3rd Saturday in November

The Chinese New Year

What sign are you?

Monday's child is full of grace

©2018 Martin Webb

Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap