Dr Pepper Museum | Waco History (2024)

Table of Contents
Images Audio Map FAQs

By Jim Stingley

Few major products are as closely identified with the people and environment where they began as Dr Pepper in Waco. Developing from a soft drink invented at a local drugstore to one of the largest and most popular industries in the world, Dr Pepper has remained attached to the city of Waco. This close identification with Waco is perhaps best exemplified in the former bottling plant building which now houses a museum on the corner of Fifth Street and Mary Avenue in downtown Waco.

In 1885, one year before the invention of Coca-Cola, a young pharmacist named Charles Alderton began experimenting by mixing different fruit flavors together at The Old Corner Drug Store on Fourth Street and Austin Avenue. The resulting concoction would become the formula for Dr Pepper. The drink became a favorite of fountain patrons, and soon people all across town ordered the drink originally known as a Waco. From around 1885 to 1891, the drink, could only be served at fountains or the drugstore, where the syrup was mixed with the carbonated water and served individually. The popularity of the beverage influenced the drugstore owner and manager, Wade Morrison and Robert S. Lazenby to form the Artesian Manufacturing and Bottling Co. in 1891 to bottle the drink.

In 1906, a three-story building was built at the corner of Fifth and Mary for the purpose of bottling and shipping the new drink. In 1922, the base of operations moved to Dallas after the formation of the formal Dr Pepper Company. Local bottling production continued until around 1965, when operations were moved to a more modern facility. The building was given to Baylor University and subsequently used as a storage warehouse for the next thirteen years.

On May 11, 1953, an F5 tornado struck downtown Waco, devastating the city. Although it did not sustain a direct hit, the bottling building was among the casualties of the tornado. The tornado damaged the Mary Street side of the building leaving a scar which is still visible today. The relatively sound construction of the bottling building, including 18-inch thick brick walls, massive timber underpinnings, and tile roof, is the reason for the fairly minor damage to the plant. The building was repaired with a lighter colored brick but not restored, and business was back to as usual until the move in 1965.

At Waco’s centennial celebration of the invention of Dr Pepper in 1985, ideas of creating a museum to tell the story of Dr Pepper production in Waco sprang up. On May 11, 1991, the thirty-eighth anniversary of the tornado, the Dr Pepper Museum and Free Enterprise Institute opened. Since then, the museum has entertained and educated thousands of visitors, with a mission of being the best museum to tell the story of the soft drink industry and to use this very industry as a testament to the free enterprise system. Complete with exhibit areas, a gift shop, soda fountain, and restored building features, the Dr Pepper Museum helps tell the story of the growth of Dr Pepper and its special place in Waco.

For more information about the museum, visit www.drpeppermuseum.com.

Images

Audio

To listen to this audio please enable JavaScript, and consider upgrading to a web browser that supports HTML5 audio

Receiving the Call to Get Involved

Calvin Bruce Smith speaks how he became involved with the plans of the Dr Pepper Museum. ~ Source: Smith, Calvin Bruce, interviewed by Leslee A Elliott and Becky Shulda, April 17, 2007, in Austin, Texas. Baylor University Institute for Oral History,...

View File Record

Becoming a Consultant for the Museum

Calvin Bruce Smith remembers speaking with the CEO of Dr Pepper, moving to Waco, and helping with the long-range master plan of the Dr Pepper Museum. ~ Source: Smith, Calvin Bruce, interviewed by Leslee A. Elliott and Becky Shulda, April 17, 2007, in...

View File Record

Smith Keeps the Effort Going

Calvin Bruce Smith tells about the progress made for a traveling exhibit, bad news from the Dr Pepper CEO, and his actions to keep the Dr Pepper Museum going. ~ Source: Smith, Calvin Bruce, interviewed by Leslee A. Elliott and Becky Shulda, April 4,...

View File Record

Map

';var marker = L.marker([item.latitude,item.longitude],{icon: icon(c,inner),title: convertHtmlToText(item.title),alt: convertHtmlToText(item.title),}).bindPopup(html);group.push(marker);if(useClusters==true) markers.addLayer(marker);});if(useClusters==true && type!=='tour' || type=='tour' && clusterTours==true){map.addLayer(markers);mapBounds = markers.getBounds();}else{group=new L.featureGroup(group); group.addTo(map);mapBounds = group.getBounds();}// Fit map to markers as neededif((type == 'queryresults'|| type == 'tour') || alwaysFit==true){if(useClusters==true){map.fitBounds(markers.getBounds());}else{map.fitBounds(group.getBounds());}}}else{ // single itemsmap.setView([data.latitude,data.longitude],defaultItemZoom);var address = data.address ? data.address : data.latitude+','+data.longitude;var image = (typeof(data.thumbnail)!="undefined") ? '' : '';var html = image+'

';var marker = L.marker([data.latitude,data.longitude],{icon: icon(color,"circle"),title: convertHtmlToText(data.title),alt: convertHtmlToText(data.title),}).bindPopup(html);marker.addTo(map);mapBounds = map.getBounds();}}if(type=='story'){var data = jQuery.parseJSON(source);if(data){addMarkers(data);}}else if(type=='tour'){var data = jQuery.parseJSON(source);addMarkers(data);}else if(type=='focusarea'){jQuery.getJSON( source, function(data) {var data = data;addMarkers(data);});}else if(type=='queryresults'){jQuery.getJSON( source, function(data) {var data = data;addMarkers(data);});}else{jQuery.getJSON( source, function(data) {var data = data;addMarkers(data);});}/* Map Action Buttons */// FullscreenjQuery('.leaflet-control-fullscreen-toggle').click(function(e){e.preventDefault();jQuery("body").toggleClass("fullscreen-map");jQuery(".leaflet-control-fullscreen-toggle i").toggleClass('fa-expand').toggleClass('fa-compress');map.invalidateSize();});jQuery(document).keyup(function(e) {if ( e.keyCode == 27 ){ // exit fullscreenif(jQuery('body').hasClass('fullscreen-map')) jQuery('.leaflet-control-fullscreen-toggle').click();}});// GeolocationjQuery('.leaflet-control-geolocation-toggle').click(function(e){e.preventDefault();var options = {enableHighAccuracy: true,maximumAge: 30000,timeout: 15000};jQuery(".leaflet-control-geolocation-toggle").addClass("working");navigator.geolocation.getCurrentPosition(function(pos) {var userLocation = [pos.coords.latitude, pos.coords.longitude];// adjust map viewif(type=='story'|| type=='tour' || type == 'queryresults'){if(jQuery(".leaflet-popup-close-button").length) jQuery(".leaflet-popup-close-button")[0].click(); // close popupvar newBounds = new L.LatLngBounds(mapBounds,new L.LatLng(pos.coords.latitude, pos.coords.longitude));map.fitBounds(newBounds);}else{map.panTo(userLocation);}// add/update user location indicatorif(typeof(userMarker)==='undefined') {userMarker = new L.circleMarker(userLocation,{ radius: 8, fillColor: "#4a87ee", color: "#ffffff", weight: 3, opacity: 1, fillOpacity: 0.8,}).addTo(map);jQuery(".leaflet-control-geolocation-toggle").removeClass("working");}else{userMarker.setLatLng(userLocation);jQuery(".leaflet-control-geolocation-toggle").removeClass("working");}}, function(error) {console.log(error);var errorMessage = error.message ? ' Error message: "' + error.message + '"' : 'Oops! We were unable to determine your current location.';jQuery(".leaflet-control-geolocation-toggle").removeClass("working");alert(errorMessage);}, options);});// enable mouse scrollwheel zoom if the user has interacted with the mapmap.once('focus', function() { map.scrollWheelZoom.enable(); });}if(useClusters==true){loadJS( leafletClusterjs, function(){console.log('Clustering ready...')mapDisplay();});}else{mapDisplay();}});});

Dr Pepper Museum | Waco History (2024)

FAQs

What is the true story of Dr Pepper? ›

A theory often cited is that the drink was named after an actual doctor, one Charles T. Pepper of Rural Retreat, Virginia. Morrison may have named the drink after the doctor in gratitude for Pepper having given Morrison his first job.

How old is the Dr Pepper Museum? ›

The Dr Pepper Museum opened to the public in May 1991 and has hosted over 2.5 million visitors. It is located in Waco, Texas and is the home of the Nation's oldest major soft drink.

Where is the original Dr Pepper plant? ›

History. Dr Pepper debuted in Waco, Texas, in 1885. The Dublin Dr Pepper Bottling was the oldest remaining Dr Pepper bottler until 2012, producing the beverage continuously since 1891.

What is the history of Dr Pepper? ›

Originally made in Morrison's Old Corner Drug Store in Waco, Texas, the drink's unique flavor was a hit when it was first sold in 1885. Wade Morrison, the drug store owner, named it "Dr. Pepper" after Dr. Charles Pepper, a Virginia doctor who was the father of a girl Morrison was once in love with.

Where is Dr Pepper buried? ›

Charles Taylor Pepper rest with those of his wife and several children in Mountain View Cemetery overlooking the town. He died in 1903 in his 73rd year, a man destined to be remembered at least in legend.

What was Dr Pepper originally called? ›

The drink became a favorite of fountain patrons, and soon people all across town ordered the drink originally known as a Waco. From around 1885 to 1891, the drink, could only be served at fountains or the drugstore, where the syrup was mixed with the carbonated water and served individually.

Who owns Dr Pepper Museum? ›

Make sure you visit the Gift Shop and stop at the Soda Fountain for one of our famous Dr Pepper Floats! The Dr Pepper Museum is an independent nonprofit history museum and is not owned or operated by Keurig Dr Pepper, the parent company of Dr Pepper.

Is Dr Pepper owned by co*ke? ›

Pepper is just one brand owned by a company called Dr. Pepper Snapple. In many regions throughout North America, the company owns and operates its own bottling and distribution facilities where you may find the Dr. Pepper soft drinks merchandised seperately from co*ke and Pepsi.

Why is Dr Pepper called Dr Pepper? ›

Dr. Pepper was a physician and surgeon during the American Civil War. To win the approval of her father, Morrison named the small town-famous drink after the doctor, although he had nothing to do with the drink's conception. Another version of the story is that Morrison worked at Dr.

What are the 23 flavors in Dr Pepper soda? ›

The 23 flavors are; cola, cherry, licorice, almond, vanilla, blackberry, apricot, (blackberry again), caramel, pepper, anise, sarsaparilla, ginger, molasses, lemon, plum, orange, nutmeg, cardamom, all spice, coriander, juniper, birch and prickly ash.

What are some fun facts about Dr Pepper? ›

Dr Pepper is the oldest soft drink in America. Older than Coca-Cola, in fact, by a full year. It was created in 1885 by a pharmacist, Charles Alderton, in Waco, Texas. And its original name was Waco – it was served there at the soda fountain in the drugstore.

Why is there a 10 2 and 4 on Dr Pepper? ›

In the 1920s and 1930s, Dr. Pepper ran the slogan "Drink a bite to eat at 10, 2 and 4." The slogan encouraged people to drink a Dr. Pepper for quick source of energy. The slogan referred to research of the time that showed people hit a low period around those times of the day.

Is Dr Pepper owned by Pepsi? ›

Strangely, Dr Pepper is only owned by Coca Cola in its European and South Korean markets. Everywhere else it is sold is managed by the Keurig Dr Pepper company.

What is the oldest soda? ›

Vernor's boasts the oldest soda in America, but not the world. That belongs to Schweppe's, who created a carbonated mineral water in 1783. Other old sodas include Hires Root Beer (1876), Moxie 1876, Dr. Pepper (1885) Coca-Cola (1886) and Pepsi (1893.

Who owns Mr Pibb? ›

Pibb Xtra, formerly called Mr. Pibb (sometimes styled as Mr. PiBB), is a soft drink created and marketed by The Coca-Cola Company.

Top Articles
Latest Posts
Article information

Author: Terence Hammes MD

Last Updated:

Views: 5969

Rating: 4.9 / 5 (49 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Terence Hammes MD

Birthday: 1992-04-11

Address: Suite 408 9446 Mercy Mews, West Roxie, CT 04904

Phone: +50312511349175

Job: Product Consulting Liaison

Hobby: Jogging, Motor sports, Nordic skating, Jigsaw puzzles, Bird watching, Nordic skating, Sculpting

Introduction: My name is Terence Hammes MD, I am a inexpensive, energetic, jolly, faithful, cheerful, proud, rich person who loves writing and wants to share my knowledge and understanding with you.