'); if(!WVM.IS_STREAMING){ $videoEl.append('' + '' + ''); } setTimeout(function(){ $('.mute-overlay').on('touchstart click', function(e){ if(e.handled === false) return; e.stopPropagation(); e.preventDefault(); e.handled = true; player.muted(false); //console.log("volumee " + WVM.activePlayer.volume()); $(this).hide(); $(this).css('display', 'none'); var currentTime = player.currentTime(); if(currentTime 0){ if(deviceName == 'desktop'){ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top; }else{ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top - $('.next-dropdown-accordion').height(); } if(deviceName == 'desktop'){ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); }else{ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); } WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); //console.log("container height: " + WVM.CONTAINER_HEIGHT); $(window).on( "resize", function() { if(deviceName == 'desktop'){ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top; }else{ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top - $('.next-dropdown-accordion').height(); } if(deviceName == 'desktop'){ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); }else{ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); } WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); console.log("container height: " + WVM.CONTAINER_HEIGHT); }); //console.log("VIDEOTOP: " + WVM.VIDEO_TOP); //console.log("VIDEOHEIGHT: " + WVM.VIDEO_HEIGHT); $(window).on( "scroll", function() { if(!WVM.IS_FLOATING){ if(deviceName == 'desktop'){ WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); }else{ WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId + " .hlsvideo-wrapper").height() + $('#media-container-' + videoId + " .now-playing-container").height(); } } //var top = $('#media-container-' + videoId).offset().top; var offset = WVM.VIDEO_TOP + (WVM.VIDEO_HEIGHT / 2); var offsetBack = WVM.VIDEO_TOP; var changed = false; //console.log("VIDEOTOP: " + WVM.VIDEO_TOP); //console.log("VIDEOHEIGHT: " + WVM.VIDEO_HEIGHT); //console.log("scrolltop " + $(window).scrollTop()); //only float if playing var isPlaying = WVM['player_state' + videoId]['IS_PLAYING'] || WVM['player_state' + videoId]['AD_IS_PLAYING']; if(isPlaying){ $('.vjs-loading-spinner').hide(); } var offsetFloatAd = 99999999; if(deviceName == 'desktop' && $('#float_anchor').length > 0){ offsetFloatAd = $('#float_anchor').offset().top - WVM.VIDEO_HEIGHT; //console.log("float anchor offset top " + offsetFloatAd); } if($(window).scrollTop() > offset && isPlaying && !WVM['player_state' + videoId]['CANCEL_FLOATING']){ $('#media-placeholder-' + videoId).height(WVM.CONTAINER_HEIGHT); $('#media-placeholder-' + videoId).css('display', 'block'); if(!WVM.IS_FLOATING){ changed = true; } WVM.IS_FLOATING = true; $('#media-container-' + videoId).addClass('floating-video'); var sWidth = window.innerWidth || document.documentElement.clientWidth; var sHeight = window.innerHeight || document.documentElement.clientHeight; if(sWidth > 900 && WADS.IS_STICKING){ $('#media-container-' + videoId).addClass('desktop-ad-is-sticky'); } else if(WADS.IS_STICKING){ if(!TOP_AD_VIEWED){ $('#media-container-' + videoId).addClass('mobile-ad-is-sticky'); }else{ $('#media-container-' + videoId).addClass('mobile-ad-is-sticky-noad'); } } else if(!WADS.IS_STICKING){ if(!TOP_AD_VIEWED){ $('#media-container-' + videoId).removeClass('desktop-ad-is-sticky'); }else{ $('#media-container-' + videoId).addClass('desktop-ad-is-sticky-noad'); } } //set right var sWidth = window.innerWidth || document.documentElement.clientWidth; var sHeight = window.innerHeight || document.documentElement.clientHeight; if(deviceName == 'desktop' || sWidth > 900){ var leftPos2 = $('aside').get(0).getBoundingClientRect().left; var leftPos = $('aside').offset().left ; $('#media-container-' + videoId).css('left', leftPos + "px"); var newWidth = Math.floor(sWidth / 3.5); $('#media-container-' + videoId).css('width', newWidth + "px"); } else{ $('#media-container-' + videoId).css('width', "100% !important"); $('#media-container-' + videoId + ' .now-playing-container').css('display', 'block'); $('#media-container-' + videoId + ' .next-dropdown-accordion').css('display', 'block'); } //floating-video $('#media-container-' + videoId + " " + '.page-carousel-wrapper').hide(); setTimeout(function(){ var hWrapper = $('.floating-video .hlsvideo-wrapper').height(); var npWidth = $('.floating-video .now-playing-container').height(); var ndWidth = $('.floating-video .next-dropdown-header').height() + 20; var scrollerHeight = sHeight - (hWrapper + npWidth + ndWidth); scrollerHeight = 180; //scrollerHeight = parseInt(scrollerHeight * 0.5); if(WVM.device_name == 'desktop'){ $('#media-container-' + videoId + " " + " .mobile-list-videos").height(scrollerHeight); } }, 100); }else if($(window).scrollTop() 0){ var container = document.querySelector('#page-carousel-' + fullVideoId); imagesLoaded( container, function() { var screenWidth = window.innerWidth || document.documentElement.clientWidth; if(screenWidth > 850){ WVM.IS_DESKTOP = true; $('#page-carousel-' + fullVideoId + ' .page-carousel-lg-slides').css('display', 'block'); WVM['player_settings' + fullVideoId].slider = $('#page-carousel-' + fullVideoId).bxSlider({ maxSlides: 4, minSlides: 4, slideWidth: 305, infiniteLoop: false, hideControlOnEnd: true, useCSS: true, pager: false, slideMargin: 15, moveSlides: 1, nextText: '', prevText: '' }); }else{ WVM.IS_DESKTOP = false; $('.page-carousel-wrapper').css('display', 'block'); } }); } }; WVM.setupToggleButton = function(fullVideoId, player){ if($('.nextplay-switch-' + fullVideoId).length > 0){ new DG.OnOffSwitchAuto({ cls:'.nextplay-switch-' + fullVideoId, height: 24, trackColorOn:'#F9F9F9', trackColorOff:'#222', textColorOn: '#222', textColorOff: '#222', textOn:'On', textOff:'Off', listener:function(name, checked){ var theVal = 1; if(!checked){ theVal = 0; } $.ajax({ url: '/ajax/update_autoplay_video/', data: { autoplay_on: theVal }, type: 'POST', dataType: 'json', success: function(data) { WVM['player_settings' + fullVideoId]['autoplay'] = checked; }, error : function(){ console.log("Error loading video"); } }); } }); } }; WVM.setupAccordionButton = function(fullVideoId){ var deviceName = 'desktop'; $('#next-dropdown-accordion-button-' + fullVideoId).on('click', function(){ if($(this).find('i').hasClass('fa-chevron-up')){ //hide $(this).find('i').removeClass('fa-chevron-up'); $(this).find('i').addClass('fa-chevron-down'); if(deviceName == "desktop" && !$('#media-container-' + fullVideoId).hasClass('floating-video')){ $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').slideUp(); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').hide(); }else{ $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').slideUp(); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').hide(); } var currVideoId = WVM['player_state' + fullVideoId]['VIDEO_ID']; var nextVideoId = WVM.getNextPlaylistIndex(currVideoId); //playerId, mediaId, fieldName var myTitle = WVM.getPlaylistData(fullVideoId, nextVideoId, 'noprefixtitle'); //alert("Getting title " + myTitle); $('#video-slider-nexttitle' + fullVideoId).css('display', 'inline'); $('#video-slider-nexttitle' + fullVideoId).html(myTitle); }else{ //expand $(this).find('i').addClass('fa-chevron-up'); $(this).find('i').removeClass('fa-chevron-down'); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').css('display', 'block'); if(deviceName == "desktop" && !$('#media-container-' + fullVideoId).hasClass('floating-video')){ $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').css('display', 'block'); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').slideDown(); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').hide(); if(!WVM.player_state139588['CAROUSEL_INIT']){ WVM.setupCarousel(fullVideoId); } }else{ $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').slideDown(); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').hide(); if(!$('#media-container-' + fullVideoId).hasClass('floating-video')){ if(!WVM.player_state139588['CAROUSEL_INIT']){ WVM.setupCarousel(fullVideoId); } } } $('#video-slider-nexttitle' + fullVideoId).css('display', 'none'); } }); var currVideoId = WVM['player_state' + fullVideoId]['VIDEO_ID']; //console.log("current Video " + currVideoId); var nextVideoId = WVM.getNextPlaylistIndex(currVideoId); var myTitle = WVM.getPlaylistData(fullVideoId, nextVideoId, 'noprefixtitle'); //console.log("setting title " + myTitle); $('#video-slider-nexttitle' + fullVideoId).css('display', 'inline'); $('#video-slider-nexttitle' + fullVideoId).html(myTitle); }; WVM.sendbeacon = function(action, nonInteraction, value, eventLabel) { var eventCategory = 'Video'; if (window.ga) { //console.log("sending action: " + action + " val: " + value + " label " + eventLabel); ga('send', 'event', { 'eventCategory': eventCategory, 'eventAction': action, 'eventLabel': eventLabel, 'eventValue': value, 'nonInteraction': nonInteraction }); } }; WVM.getNextPlaylistIndex = function(mediaId, returnArrayIndex){ var currId = null; if(mediaId == null){ return null; } for(var x =0; x 20){ if(fullDuration > 1 && ((fullDuration - fullCurrent) > 1) && !$('.vjs-loading-spinner').hasClass('badspinner')){ console.log("hiding spinner"); $('.vjs-loading-spinner').addClass('badspinner'); } } var duration_time = Math.floor(this.duration()); //this is a hack because the end video event is not firing... var current_time = Math.floor(this.currentTime()); if ( current_time > 0 && ( fullCurrent >= (fullDuration - 10) )){ var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ if('desktop' == "iphone" && playerState.AD_ERROR){ console.log("skipped timeupdate end"); }else{ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } } } if(!playerState.START_SENT){ WVM.sendbeacon('start', true, playerState.VIDEO_ID, playerState.VIDEO_TITLE); playerState.START_SENT = true; } var currentTime, duration, percent, percentPlayed, _i; currentTime = Math.round(this.currentTime()); duration = Math.round(this.duration()); percentPlayed = Math.round(currentTime / duration * 100); for (percent = _i = 0; _i = percent && __indexOf.call(playerState['PERCENTS_TRACKED'], percent) 0) { playerState['PERCENTS_TRACKED'].push(percent); } } } }); //player.off('ended'); player.on('ended', function(){ console.log("ended"); playerState.IS_PLAYING = false; WVM.sendbeacon("complete", true, playerState.VIDEO_ID, playerState.VIDEO_TITLE); var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); }else{ console.log("Playlist complete (no more videos)"); } }); //player.off('adserror'); player.on('adserror', function(e){ //$('#ima-ad-container').remove(); WVM.lastAdRequest = new Date().getTime() / 1000; console.log(e); console.log("ads error"); var errMessage = e['data']['AdError']['l']; playerState.AD_IS_PLAYING = false; playerState.IS_PLAYING = false; // && errMessage == 'The VAST response document is empty.' if(!playerState.AD_ERROR){ var dTime = new Date().getTime(); WVM.firstPrerollTagUrl = WVM.getFirstPrerollUrl(); console.log("calling backup ad tag url: " + WVM.firstPrerollTagUrl); WVM.activePlayer.ima.changeAdTag(WVM.firstPrerollTagUrl + "?" + dTime); WVM.activePlayer.ima.requestAds(); //WVM.activePlayer.src({ // src: masterSrc, // type: 'video/mp4' //}); //WVM.firstPrerollTagUrl = ""; } playerState.AD_ERROR = true; }); //player.off('error'); player.on('error', function(event) { if (player.error().code === 4) { player.error(null); // clear out the old error player.options().sources.shift(); // drop the highest precedence source console.log("now doing src"); console.log(player.options().sources[0]); player.src(player.options().sources[0]); // retry return; } }); //player.off('volumechange'); player.on('volumechange', function(event) { console.log(event); var theHeight = $('#media-container-' + playerState.ORIGINAL_ID + ' .vjs-volume-level').css('height'); var cssVolume = 0; if(theHeight){ cssVolume = parseInt(theHeight.replace('%', '')); } var theVolume = player.volume(); if(theVolume > 0.0 || cssVolume > 0){ $('#media-container-' + playerState.ORIGINAL_ID + ' .mute-overlay').css('display', 'none'); }else{ $('#media-container-' + playerState.ORIGINAL_ID + ' .mute-overlay').css('display', 'block'); } }); WVM.reinitRawEvents(playerState.ORIGINAL_ID); setInterval(function(){ WVM.reinitRawEvents(playerState.ORIGINAL_ID); }, 2000); } if(!WVM.rawCompleteEvent){ WVM.rawCompleteEvent = function(e){ var playerState = WVM['player_state139588']; console.log("firing raw event due to all other events failing"); var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } }; } if(!WVM.rawTimeupdateEvent){ WVM.rawTimeupdateEvent = function(e){ var playerState = WVM['player_state139588']; var rawVideoElem = document.getElementById('html5-video-' + playerState['ORIGINAL_ID'] + '_html5_api'); var fullCurrent = rawVideoElem.currentTime * 1000; var fullDuration = rawVideoElem.duration * 1000; var current_time = Math.floor(rawVideoElem.currentTime); console.log("raw timeupdate: " + fullCurrent + " out of " + fullDuration); if ( current_time > 0 && ( fullCurrent >= (fullDuration - 50) )){ var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); if(newMediaId){ console.log("loading new video from rawtimeupdate"); WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } } if(!$('.vjs-loading-spinner').hasClass('badspinner')){ $('.vjs-loading-spinner').addClass('badspinner') } }; } WVM.reinitRawEvents = function(playerId){ var playerState = WVM['player_state' + playerId]; var rawVideoElem = document.getElementById('html5-video-' + WVM['player_state' + playerId]['ORIGINAL_ID'] + '_html5_api'); //COMPLETE EENT if( WVM['player_state' + playerId].COMPLETE_EVENT){ rawVideoElem.removeEventListener('ended', WVM.rawCompleteEvent, false); } rawVideoElem.addEventListener('ended', WVM.rawCompleteEvent, false); //TIME UPDATE EVENT if( WVM['player_state' + playerId].TIMEUPDATE_EVENT){ rawVideoElem.removeEventListener('ended', WVM.rawTimeupdateEvent, false); } rawVideoElem.addEventListener('ended', WVM.rawTimeupdateEvent, false); WVM['player_state' + playerId].COMPLETE_EVENT = true; WVM['player_state' + playerId].TIMEUPDATE_EVENT = true; };
MILWAUKEE (CBS 58) -- When you take your pet to see the veterinarian, it might look a lot like when you see the doctor.
There is now more curbside visits, telemedicine, and social distancing.
Doctor Dana Varble, the chief veterinary officer of the North American Veterinary Community, joins CBS 58 Morning News to discuss these changes.
Excerpt from:
How coronavirus changed the way veterinary medicine is practiced - WDJT
- Introducing the reinvigorated AVMA Career Center - American Veterinary Medical Association - December 19th, 2024
- Zoetis Responds to FDAs Dear Veterinarian Letter - Today's Veterinary Business - December 19th, 2024
- Nonprofit seeks to boost sustainability in veterinary realm - VIN News Service - December 19th, 2024
- Patty Scharko, 2024 Distinguished Veterinarian of the Year - Clemson News - December 19th, 2024
- Local Students Scrub in as Veterinarians for a Day, Gaining Hands-On Experience and Immersive Training at the World's Largest Veterinary Conference -... - December 19th, 2024
- 2024 Year in Review - Clemson News - December 19th, 2024
- Paws and profits: New leadership in the veterinary industry - DVM 360 - December 19th, 2024
- AAHAs DEIB committee: Its evolution, key values, and future - AAHA - December 19th, 2024
- Top Science Stories of 2024 - Tufts Now - December 19th, 2024
- Tips to keep your pets safe during the holiday season - Oklahoma City Sentinel - December 19th, 2024
- Coalition for Veterinary Professional Associates Calls for Action: Addressing the Veterinary Workforce Shortage and Advancing the OneHealth Initiative... - December 19th, 2024
- Should They Stay Or Should They Go? Things To Know Before Taking Pets On Holiday Trips - Texas A&M University Today - December 19th, 2024
- Simple enrichment reduces boredom and boosts welfare in housed dairy cows - EurekAlert - December 19th, 2024
- Meet our Support Staff | Animal Medical Center of Loudoun - December 6th, 2024
- Veterinary Teaching Hospital teams work together on dog's medical mystery - Virginia Tech - December 6th, 2024
- Leptospirosis in dogs and vets - DVM 360 - December 6th, 2024
- Considerations, risks, and challenges: Recent book focuses on pregnancy and postpartum in veterinary practice - AAHA - December 6th, 2024
- Apply to be an AVMA COE site visitor - American Veterinary Medical Association - December 6th, 2024
- Living her dream as a wildlife veterinarian - Union College - December 6th, 2024
- We look back on a year of accomplishments and reflect on goals for 2025 - HSUS News - December 6th, 2024
- Having A Paw-some Holiday: Keeping Pets Safe, Happy And Included - Texas A&M University Today - December 6th, 2024
- Shaping the future: CSUs veterinary medicine program trains through innovation - Rocky Mountain Collegian - December 6th, 2024
- The problem with the 'gold standard' - DVM 360 - December 6th, 2024
- Shaping the Future of Veterinary Medicine: VMX 2025 to Advance Health Care for Beloved Pets, Wildlife and Species Across the Animal Kingdom - from... - December 6th, 2024
- Purdue research can help slow down growth of Alzheimers and Parkinsons - Purdue Exponent - December 6th, 2024
- Dermatology red flags and allergy mimickers - DVM 360 - December 6th, 2024
- Career Opportunities | Animal Medical Center of Loudoun - November 3rd, 2024
- Compassionate End-of-Life Care for Pets | Animal Medical Center of Loudoun - November 3rd, 2024
- Hormone Hassle: Managing Addisons Disease In Pets - Texas A&M University Today - November 3rd, 2024
- Proposition 129 is a dangerous step backward for veterinary care - The Fence Post - November 3rd, 2024
- Prop 129 introduces a new position to veterinary care - KJCT - November 3rd, 2024
- Managing seizures in dogs and cats - DVM 360 - November 3rd, 2024
- Why Are Cats So Flexible? This Body Part Is Key - Inverse - November 3rd, 2024
- Those pets need the same care as our dogs and cats: New Bluefield vet treats exotic animals - WVVA - November 3rd, 2024
- Letter to the editor: As a veterinarian, I urge you to vote no on Prop 129 - Summit Daily - November 3rd, 2024
- Weatherford vet among four appointed to state board - Weatherford Democrat - November 3rd, 2024
- The Vets and BetterVet Merge to Revolutionize Pet Care with Nationwide At-Home Services - Vet Candy - November 3rd, 2024
- Struggling with high pet med costs? Canada's competition watchdog calls for more choice and affordable options - CBC.ca - November 3rd, 2024
- Guest opinion: Kerry Madole: Prop 129 will help us move towards ensuring all animals receive the care they need - Boulder Daily Camera - November 3rd, 2024
- This Auburn grad found an amazing alternative to vet school in Huntsville - Hville Blast - November 3rd, 2024
- What Is Colorados Proposition 129? Here is Everything You Need to Know - Teekinship - November 3rd, 2024
- Meet our Team | Animal Medical Center of Loudoun - October 14th, 2024
- Your Trusted Family Veterinarian in Ashburn & Brambleton, VA | Animal ... - October 14th, 2024
- Meet our Veterinarians | Animal Medical Center of Loudoun - October 14th, 2024
- Thank you, next! Celebrating career paths of the veterinary technician - DVM 360 - October 14th, 2024
- Better Choice Company to Expand into Veterinary Medicine in 2025 Following the Acquisition of SRx Health - GlobeNewswire - October 14th, 2024
- In memoriam: Bernard Jortner, professor emeritus of biomedical sciences and pathobiology - Virginia Tech - October 14th, 2024
- Better Choice Company to Expand into Veterinary Medicine in 2025 Following the Acquisition of SRx Health - StockTitan - October 14th, 2024
- Proposition 129: A sham proposal or a solution to a Colorado veterinary care crisis? | WHAT YOU NEED TO KNOW - coloradopolitics.com - October 14th, 2024
- Pets and Vets, Proposition 129 could change who is qualified to treat your pet - KOAA News 5 - October 14th, 2024
- Where in the world is veterinarian Brianna Beechler? South Africa - Life at OSU - October 14th, 2024
- Degree powers granted to Scots college for the first time in almost 20 years - Yahoo News UK - October 14th, 2024
- UGA partners with FDA to test U.S. dairy supplies for avian influenza - University of Georgia - October 14th, 2024
- Pet population continues to increase while pet spending declines - American Veterinary Medical Association - October 14th, 2024
- Vet medication known on the street as tranq leads to more overdose deaths in Yukon - Global News Toronto - October 14th, 2024
- Pet Talk - Taking The Sting Out Of Scorpions - courierjournal - October 14th, 2024
- Merck Veterinary Manual - September 13th, 2024
- Scituate Animal Hospital - September 13th, 2024
- DVM Program - School of Veterinary Medicine - September 13th, 2024
- UW-Madison highlights veterinary medicine on 175th anniversary tour - WXOW.com - September 13th, 2024
- Merck Animal Health Partners and AVC Foundation to award scholarships to future bovine veterinarians - The Fence Post - September 13th, 2024
- Teamwork Makes the Dream Work: The CVM continues push to hire innovative faculty - Clemson News - September 13th, 2024
- Kays Foundation commits more than $500,000 to Arkansas State University College of Veterinary Medicine - Arkansas Online - September 13th, 2024
- A Crisis in the Veterinary World - The Plaid Horse - September 13th, 2024
- Kays Foundation Commits More than $500K to College of Veterinary Medicine - NEA Report - September 13th, 2024
- Project Street Vet and Sheriffs Office Unite to Aid Homeless Pet Owners in Oceanside - Angels in Medicine - September 13th, 2024
- LSU Vet Med pays tribute to pets and their people with giant purple and gold sculpture - The Advocate - September 13th, 2024
- The ideal place to take reptiles pulse - DVM 360 - September 13th, 2024
- 6 veterinarian team at McAfee Animal Hospital bring a loving family atmosphere to the workplace - Valpo.Life - September 13th, 2024
- Just one thing: Allocating practice owner time productively - American Veterinary Medical Association - September 13th, 2024
- Careers in Agriculture: Love of working with animals develops into veterinarian career - Agri-News - September 13th, 2024
- Small Animal Specialist Hospital (SASH) Vets Australia: Heroes of The Pet World - Catster - September 13th, 2024
- Does Your Dog Need Glasses? From Removing Cataracts and Performing Surgeries to Restore Vision, Veterinarians ... - PR Newswire - May 14th, 2024
- Unveiling the Secrets of Veterinary Success: Dive into the Latest Issue of Business by Vet Candy! - Vet Candy - May 5th, 2024
- Nonprofit raising money to save dogs in need of lifesaving medical treatment - Sunbury Daily Item - May 5th, 2024
- What does a veterinarian do? - CareerExplorer - March 29th, 2024
- Veterinary Medicine Overview - CareerExplorer - March 29th, 2024
- 6 in 10 pet owners surveyed in the UK, Austria and Denmark believe their pets should have access to the same healthcare treatment options as humans -... - March 29th, 2024
- 7 horses died in the lead-up to the Kentucky Derby. What is being done to prevent deaths and injuries? - PBS NewsHour - May 9th, 2023
- A Career in Veterinary Medicine - AAVMC - February 24th, 2023