if (window.BEJSSDKObserver === undefined) { (function(BEJSSDKObserver, $, undefined) { var observer = void 0; var listeners = []; var readySet = []; var doc = window.document; var MutationObserver = window.MutationObserver || window.WebKitMutationObserver; function checkSelector(selector, fn, indexList) { var elements = doc.querySelectorAll(selector); for (var i = 0, len = elements.length; i < len; i++) { /* -1 means all instances */ if (indexList != -1 && !(i in indexList)) { continue; } var element = elements[i]; for (var j = 0; j < readySet.length; j++) { if (readySet[j] == element.className || readySet[j] == element.id) { return; } } if (element.className) { readySet.push(element.className); } if (element.id) { readySet.push(element.id); } if (!element.ready || MutationObserver==null) { element.ready = true; fn.call(element, element); } } } function checkListeners() { listeners.forEach(function (listener) { return checkSelector(listener.selector, listener.fn, listener.indexList); }); } function removeListener(selector, fn) { var i = listeners.length; while (i--) { var listener = listeners[i]; if (listener.selector === selector && listener.fn === fn) { listeners.splice(i, 1); if (!listeners.length && observer) { observer.disconnect(); observer = null; } } } } /** * Fire event on first js selector * @param selector string to watch on * @param fn callback function * @param index_list can be undefined which means only first one * or -1 which means all * or a list of allowable indexes */ BEJSSDKObserver.jsElementReady = function(selector, fn, index_list) { if (index_list === undefined) { index_list = []; index_list.push(0); } if (MutationObserver != null) { if (!observer) { observer = new MutationObserver(checkListeners); observer.observe(doc.documentElement, { childList: true, subtree: true }); } listeners.push({ selector: selector, fn: fn, indexList: index_list }); } else { /* <= IE8 */ if (!document.addEventListener) { /* log("<=IE8 attachEvent assignment"); */ document.addEventListener = document.attachEvent; } document.addEventListener("DOMContentLoaded", function(event) { var elements = doc.querySelectorAll(selector); for (var i = 0, len = elements.length; i < len; i++) { /* -1 means all instances */ if (index_list != -1 && !(i in index_list)) { continue; } var element = elements[i]; element.ready = true; fn.call(element, element); } }); } checkSelector(selector, fn, index_list); return function () { return removeListener(selector, fn); }; }; }(window.BEJSSDKObserver = window.BEJSSDKObserver || {})); } var jsElementReady = window.BEJSSDKObserver.jsElementReady; if (window.BELinkBlockGenerator === undefined) { (function(BELinkBlockGenerator, $, undefined) { BELinkBlockGenerator.MAXIMUM_HEADLINE_LENGTH = 100; BELinkBlockGenerator.MAXIMUM_DESC_LENGTH = 200; BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_URL_TYPE = 0; BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_HEADLINE_TYPE = 1; BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_DESCRIPTION_TYPE = 2; BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_IMAGE_TYPE = 3; BELinkBlockGenerator.REPLACEMENT_STRATEGY_OVERWRITE = 0; BELinkBlockGenerator.REPLACEMENT_STRATEGY_POST_APPEND_ELEMENT = 1; BELinkBlockGenerator.REPLACEMENT_STRATEGY_PRE_APPEND_ELEMENT = 2; BELinkBlockGenerator.REPLACEMENT_STRATEGY_PRE_APPEND_PARENT = 3; BELinkBlockGenerator.setMaximumHeadlineLength = function(length) { BELinkBlockGenerator.MAXIMUM_HEADLINE_LENGTH = length; }; BELinkBlockGenerator.setMaximumDescriptionLength = function(length) { BELinkBlockGenerator.MAXIMUM_DESC_LENGTH = length; }; BELinkBlockGenerator.generateIndividualLinks = function(parentElement, linkStructure, link) { var link_level_element_tag = linkStructure[0]; var link_level_element = document.createElement(link_level_element_tag); var link_attribute_dictionary = linkStructure[1]; var allowable_elements = linkStructure[2]; var children_link_structures = linkStructure[3]; for (var link_attribute_key in link_attribute_dictionary) { link_level_element.setAttribute(link_attribute_key, link_attribute_dictionary[link_attribute_key]); } var added_something = false; if (allowable_elements.indexOf(BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_URL_TYPE)>=0) { link_level_element.setAttribute('href', link.url); added_something = true; } if (allowable_elements.indexOf(BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_HEADLINE_TYPE)>=0 && link.h1) { var headline_text = link.h1; if (headline_text.length > BELinkBlockGenerator.MAXIMUM_HEADLINE_LENGTH) { headline_text = headline_text.substring(0, BELinkBlockGenerator.MAXIMUM_HEADLINE_LENGTH) + '...'; } var text_node = document.createTextNode(headline_text); link_level_element.appendChild(text_node); added_something = true; } if (allowable_elements.indexOf(BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_DESCRIPTION_TYPE)>=0 && link.desc) { var desc_text = link.desc; if (desc_text.length > BELinkBlockGenerator.MAXIMUM_DESC_LENGTH) { desc_text = desc_text.substring(0, BELinkBlockGenerator.MAXIMUM_DESC_LENGTH) + '...'; } var text_node = document.createTextNode(desc_text); link_level_element.appendChild(text_node); added_something = true; } if (allowable_elements.indexOf(BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_IMAGE_TYPE)>=0 && link.image) { link_level_element.setAttribute('src', link.image); added_something = true; } /** don't emit for empty links, desc, headline, image except for parent structures where allowable_length=0 */ if (!added_something && allowable_elements.length != 0) { return; } /* go depth first */ for (var childrenIndex=0; childrenIndex .be-ix-link-block .be-related-link-container {margin-bottom: -20px;margin-top: 40px;text-align: center;} .be-ix-link-block .be-related-link-container .be-label {margin: 0;color: white;line-height: 1em;font-variant-numeric: lining-nums;} .be-ix-link-block .be-related-link-container .be-list { display: inline-block; list-style: none;margin: 0; padding: 0;} .be-ix-link-block .be-related-link-container .be-list .be-list-item {display: inline-block;margin-right: 20px;margin-bottom: 6px;} .be-ix-link-block .be-related-link-container .be-list .be-list-item .be-related-link { text-decoration: underline;} .be-ix-link-block .be-related-link-container .be-list .be-list-item .be-related-link:hover {text-decoration: underline;color: rgba(143, 158, 189, var(--text-opacity));} .be-ix-link-block .be-related-link-container .be-list .be-list-item:last-child { margin-right: 0;} @media (max-width: 767px) { .be-ix-link-block .be-related-link-container .be-label {width: 100%;margin-bottom: 10px;} .be-ix-link-block .be-related-link-container .be-list { display: block;width: 100%;} .be-ix-link-block .be-related-link-container .be-list .be-list-item {display: block;margin-right: 0;} } @media (min-width: 768px) { .be-ix-link-block .be-related-link-container {display: flex;align-items: baseline;justify-content: center;} .be-ix-link-block .be-related-link-container .be-label {display: inline-block;margin-right: 20px;flex-grow: 0;flex-shrink: 0;} } Jacob Taunton | VCOM Skip to main content
VCOM Campus

Jacob Taunton, DO

Jacob Taunton, DO
Graduated: Class of 2020
Campus: Auburn
Prior School: Auburn University
Degree: BS in Biomedical Science
Residencies: Jack Hughston Memorial Hospital, University of Arkansas for Medical Sciences (UAMS)
Specialties: Orthopedic Surgery, Fellowship Orthopedic Spine Surgery
Hometown: Dallas, TX

I am not sure I would have told you I foresaw myself as an Orthopedic Spine surgeon prior to medical school, and VCOM helped provide the foundation I needed to begin that journey, for which I am extremely grateful.

Was there anything or anyone at VCOM that inspired you to become the physician you are today?

VCOM provided me with the education to pursue a career in medicine with a service-minded approach, which I have carried with me to this day. I had several excellent professors and clinical preceptors who solidified that aspect of my training and demonstrated what it was like to be that way in practice on a day-to-day basis.

How has the VCOM mission inspired you during residency or in your practice?

VCOM taught me a patient-oriented treatment approach, which I have strived to implement in both the operating room and clinic. It can be easy to slip into a mindset of seeing patients as problems to solve. I am thankful I received my education from people who continuously emphasized the importance of evaluating the whole patient while maintaining their dignity and humanness in all stages of treatment.

What is the best advice you can give a medical student to help them in their path towards being a physician?

Work hard. Spend time thinking about and committing yourself to what kind of physician you want to be and how best to apply your gifts and talents. Make sure you also have people and things in your life who pour into you and help you carry the burden of the career you have chosen. Also, make sure you have a hobby or passion that can give you a needed break from time to time.

What are your fondest memories about your time at VCOM?

The friends I made. I had an excellent support group of people who I greatly valued and leaned on for advice and support. I made many friends, several of which were in my wedding and continue to check in on me to this day. They helped provide an environment for me where I felt cared for and allowed me to excel.

What career accomplishment are you most proud of?

Honestly, just being in the position I have been fortunate enough to be in. I was able to match to the Orthopedic residency I wanted to go to, and I also matched into the fellowship I wanted at a very competitive program in a very competitive field. I am not sure I would have told you I foresaw myself as an Orthopedic Spine surgeon prior to medical school, and VCOM helped provide the foundation I needed to begin that journey, for which I am extremely grateful.

When not working, what activities do you enjoy?

I am an avid outdoorsman who enjoys hunting and fishing. I also enjoy spending time with my wife and son, who are great sources of support and joy in my life. I am involved in a wonderful community and church. I love doing just about anything outside and spending time with friends. Other hobbies include cooking, sports, travel, and reading.