CVS Pharmacy Medicine Disposal Box - Rx Drug Drop Box (2024)

',multimarker: [],containerID: '',panorama: null,ibTimeout: null,mapOptions: {center: { lat: 0, lng: 0},zoom: 3, streetViewControl: true,draggable: true,scrollwheel: false, fullscreenControl: false},params: {name: '',enableAutoFit: false,enableClustering: false,enableGeolocation: false,customIB: true,externalInfoWindow: true,streetview: false,radius: 100,i18n: [],},initialize: function(containerID, mapMarkers, options, params){MAP.markers = $.extend( MAP.markers, mapMarkers );MAP.mapOptions = $.extend( MAP.mapOptions, options );//correct starting latitude and longitude options from 0,0 to values from Header Map Element to use as starting position the position defined inside elementif( typeof params.address !== "undefined" ){MAP.mapOptions.center.lat = parseFloat(params.address.latitude);MAP.mapOptions.center.lng = parseFloat(params.address.longitude);}MAP.params = $.extend( MAP.params, params );MAP.clusterer = new MarkerClusterer();MAP.bounds = new google.maps.LatLngBounds();MAP.containerID = containerID;MAP.setCustomOptions();var mapContainer = $("#" + containerID + "-container").get(0);MAP.mapContainer = mapContainer;//decide if standard map or streetview will be displayedif (MAP.params.streetview) {var pov = {heading: parseInt(MAP.params.swheading),pitch: parseInt(MAP.params.swpitch),zoom: parseInt(MAP.params.swzoom),};MAP.map = new google.maps.StreetViewPanorama(mapContainer, MAP.mapOptions);MAP.map.setPosition(new google.maps.LatLng(MAP.params.address.latitude, MAP.params.address.longitude));MAP.map.setPov(pov);}else{MAP.map = new google.maps.Map(mapContainer, MAP.mapOptions);}// create global variable (if doesn't exist)// make sure you are using unique name - there might be another map already stored// store only map with defined name parameterglobals.gm_authFailure = MAP.gm_authFailure;if (typeof globals.globalMaps === "undefined") {globals.globalMaps = {};}MAP.initMarkers(MAP.markers);if ( MAP.params.enableClustering) {MAP.initClusterer();};if ( MAP.params.enableGeolocation ) {MAP.setGeolocation();} else if( MAP.params.enableAutoFit ) {MAP.autoFit();}/*if (MAP.params.streetview) {MAP.enableStreetview();}*/if (MAP.params.name !== "") {globals.globalMaps[MAP.params.name] = MAP;}},initMarkers: function(markers){for (var i in markers) {var marker = markers[i];if ( typeof type !== 'undefined' && marker.type !== type) {continue;}var location = new google.maps.LatLng(marker.lat, marker.lng);MAP.bounds.extend(location);MAP.locations.push(location);var newMarker = MAP.placeMarker(marker);MAP.placedMarkers.push(newMarker);}},placeMarker: function(marker){if (marker.icon) {var icon = {url: marker.icon,};} else {var icon = "";}// title is commented because it caused tooltip problems on mouse hovervar marker = new google.maps.Marker({position: new google.maps.LatLng(marker.lat, marker.lng),map: MAP.map,icon: icon,title: '',// title: marker.title,context: marker.context,type: marker.type,id: marker.id,data: marker.data,enableInfoWindow: marker.enableInfoWindow});//hotfix// if marker doesn't specify enableInfoWindow parameter automatically consider it as enabledif (typeof marker.enableInfoWindow === "undefined" || marker.enableInfoWindow === true) {MAP.customInfoWindow(marker);}marker.addListener('click', function() {//do not do panTo() function if streetviewif( MAP.params.streetview ) return;if (!MAP.mapContainer) {MAP.map.panTo(marker.getPosition());return;}setTimeout(() => {var popupOffset = MAP.mapContainer.offsetHeight/2 - MAP.currentInfoWindow.content_.offsetHeight - marker.icon.size.height - 19; // marker gapvar lat = marker.position.lat();if (popupOffset < 0) {var project = MAP.latLngToPoint(marker.position);project.y -= MAP.currentInfoWindow.content_.offsetHeight/2;lat = MAP.pointToLatLng(project).lat();}MAP.map.panTo({"lat": lat, "lng": marker.position.lng()});}, 0);});return marker;},latLngToPoint: function(latLng) {var topRight = MAP.map.getProjection().fromLatLngToPoint(MAP.map.getBounds().getNorthEast());var bottomLeft = MAP.map.getProjection().fromLatLngToPoint(MAP.map.getBounds().getSouthWest());var scale = Math.pow(2, MAP.map.getZoom());var worldPoint = MAP.map.getProjection().fromLatLngToPoint(latLng);return new google.maps.Point((worldPoint.x - bottomLeft.x) * scale, (worldPoint.y - topRight.y) * scale);},pointToLatLng: function(point) {var topRight = MAP.map.getProjection().fromLatLngToPoint(MAP.map.getBounds().getNorthEast());var bottomLeft = MAP.map.getProjection().fromLatLngToPoint(MAP.map.getBounds().getSouthWest());var scale = Math.pow(2, MAP.map.getZoom());var worldPoint = new google.maps.Point(point.x / scale + bottomLeft.x, point.y / scale + topRight.y);return MAP.map.getProjection().fromPointToLatLng(worldPoint);},customInfoWindow: function(marker){//if marker is Geolocation position pin, do not create infoboxif(marker.type === undefined) return;var boxText = document.createElement("div");boxText.className = 'infobox-content';var content = marker.context;boxText.innerHTML = content;var myOptions = {content: boxText,disableAutoPan: false,closeBoxURL: ait.paths.img + "/infobox_close.png",pixelOffset: new google.maps.Size(-145, -200),};var ib = new InfoBox(myOptions);marker.addListener('click', function() {if (MAP.currentInfoWindow) {MAP.currentInfoWindow.close();}MAP.currentInfoWindow = ib;ib.open(MAP.map, marker);});google.maps.event.addListener(ib, 'domready', function() {var content = ib.getContent()jQuery(content).find('.review-stars-container .review-stars').raty({font: true,readOnly:true,halfShow:true,starHalf:'fa-star-half-o',starOff:'fa-star-o',starOn:'fa-star',score: function() {return jQuery(this).attr('data-score');},});})return ib;},autoFit: function(){//do not do autofit for streetview mapif( MAP.params.streetview ) return;if (!MAP.bounds.isEmpty()) {MAP.map.fitBounds(MAP.bounds); MAP.map.panToBounds(MAP.bounds);var listener = google.maps.event.addListener(MAP.map, "idle", function() {if (MAP.map.getZoom() > MAP.mapOptions.zoom) {MAP.map.setZoom(MAP.mapOptions.zoom);}google.maps.event.removeListener(listener);});} else {MAP.map.setCenter(MAP.mapOptions.center);}},setGeolocation: function(){//do not do geolocation for streetview mapif( MAP.params.streetview ) return;var lat,lon,tmp = [];window.location.search//.replace ( "?", "" )// this is better, there might be a question mark inside.substr(1).split("&").forEach(function (item) {tmp = item.split("=");if (tmp[0] === 'lat'){lat = decodeURIComponent(tmp[1]);}if (tmp[0] === 'lon'){lon = decodeURIComponent(tmp[1]);}});if(typeof lat != 'undefined' & typeof lon != 'undefined' && lat != '' && lon != '') {var pos = new google.maps.LatLng(lat, lon);MAP.placeMarker({lat: lat,lng: lon,icon: ait.paths.img +'/pins/geoloc_pin.png',});MAP.map.setCenter(pos);if(MAP.params.radius === false) {MAP.map.setZoom(MAP.mapOptions.zoom);} else {MAP.map.setZoom(Math.round(14-Math.log(MAP.params.radius)/Math.LN2));}var radiusOptions = {strokeColor: '#005BB7',strokeOpacity: 0.8,strokeWeight: 2,fillColor: '#008BB2',fillOpacity: 0.35,map: MAP.map,center: pos,radius: MAP.params.radius * 1000,};var radiusCircle = new google.maps.Circle(radiusOptions);} else if(navigator.geolocation) {// Try HTML5 geolocationnavigator.geolocation.getCurrentPosition(function(position) {var pos = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);MAP.placeMarker({enableInfoWindow: false,lat: position.coords.latitude,lng: position.coords.longitude,icon: ait.paths.img +'/pins/geoloc_pin.png',});MAP.map.setCenter(pos);if(MAP.params.radius === false) {MAP.map.setZoom(MAP.mapOptions.zoom);} else {MAP.map.setZoom(Math.round(14-Math.log(MAP.params.radius)/Math.LN2));}var radiusOptions = {strokeColor: '#005BB7',strokeOpacity: 0.8,strokeWeight: 2,fillColor: '#008BB2',fillOpacity: 0.35,map: MAP.map,center: pos,radius: MAP.params.radius * 1000,};var radiusCircle = new google.maps.Circle(radiusOptions);}, function() {MAP.handleNoGeolocation(true);});} else {// Browser doesn't support GeolocationMAP.handleNoGeolocation(false);}},handleNoGeolocation: function(errorFlag){var content = 'Geolocation failed';if (errorFlag) {if (typeof MAP.params.i18n.error_geolocation_failed !== 'undefined') {content = MAP.params.i18n.error_geolocation_failed;}} else {if (typeof MAP.params.i18n.error_geolocation_unsupported !== 'undefined') {content = MAP.params.i18n.error_geolocation_unsupported;}}MAP.map.setZoom(MAP.mapOptions.zoom);MAP.map.setCenter(MAP.mapOptions.center);alert(content);},gm_authFailure: function(){var apiBanner = document.createElement('div');var a = document.createElement('a');var linkText = document.createTextNode("Read more");a.appendChild(linkText);a.title = "Read more";a.href = "https://www.ait-themes.club/knowledge-base/google-maps-api-error/";a.target = "_blank";apiBanner.className = "alert alert-info";var bannerText = document.createTextNode("Please check Google API key settings");apiBanner.appendChild(bannerText);apiBanner.appendChild(document.createElement('br'));apiBanner.appendChild(a);$(MAP.mapContainer).html(apiBanner);},initClusterer: function(){//do not use clusterer for streetview mapif( MAP.params.streetview ) return;var mcOptions = {gridSize: 50,enableRetinaIcons: true,ignoreHidden: true,styles: [{url: ait.paths.img +'/pins/clusters/cluster1.png',text: '+',height: 50,width: 50,// anchor: [3, 0],textColor: '#666',textSize: 10// text: ''}, {url: ait.paths.img +'/pins/clusters/cluster2.png',height: 60,width: 60,// anchor: [6, 0],text: '+',textColor: '#666',textSize: 11// text: '',}, {url: ait.paths.img +'/pins/clusters/cluster3.png',text: '+',width: 66,height: 66,// anchor: [8, 0],textColor: '#666',textSize: 12}]};if (typeof MAP.params.clusterRadius !== "undefined") {mcOptions.gridSize = MAP.params.clusterRadius;}MAP.clusterer.clearMarkers();var mc = new MarkerClusterer(MAP.map, MAP.placedMarkers, mcOptions);mc.setCalculator(function(markers) {var count = markers.length;for (var i = markers.length - 1; i >= 0; i--) {if (markers[i].isMulti) {count = count + markers[i].count -1;}// markers[i]};var index = 0;var dv = count;while (dv !== 0) {dv = parseInt(dv / 10, 10);index++;}index = Math.min(index);return {text: count,index: index};});MAP.clusterer = mc;},placeMultimarker: function(position, type, context1, context2, id1, id2, title1, title2){var $multiInfoBox = jQuery('

');$multiInfoBox.append(context1);$multiInfoBox.append(context2);var option1 = jQuery('

');var option2 = jQuery('

');$multiInfoBox.find('select').append(option1);$multiInfoBox.find('select').append(option2);var context = $multiInfoBox.wrap('

').parent().html();var icon = ait.paths.img + "/pins/multi_pin.png";var marker = new google.maps.Marker({position: position,map: MAP.map,icon: icon,// title: marker.title,context: context,isMulti: true,type: type,count: 2,});google.maps.event.addListener(marker, 'click', function(event) {if (MAP.currentInfoWindow) {MAP.currentInfoWindow.close();}MAP.map.panTo(marker.getPosition());MAP.currentInfoWindow = MAP.customInfoWindow(marker);});return marker;},appendToMultimarker: function(index, context, id, title){var $multiInfoBox = jQuery.parseHTML(MAP.placedMarkers[index].context);$multiInfoBox = jQuery($multiInfoBox).append(context);var $select = $multiInfoBox.find('select');var option = jQuery('

');$select.append(option);var result = $multiInfoBox.wrap('

').parent().html();MAP.placedMarkers[index].context = result;MAP.placedMarkers[index].count ++;},setCustomOptions: function(){if (typeof MAP.params.typeId !== "undefined") {MAP.mapOptions.mapTypeId = google.maps.MapTypeId[MAP.params.typeId];}MAP.mapOptions.mapTypeControlOptions = { position: google.maps.ControlPosition.LEFT_BOTTOM, style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR, };MAP.mapOptions.streetViewControlOptions = { position: google.maps.ControlPosition.RIGHT_BOTTOM, }; MAP.mapOptions.zoomControlOptions = { position: google.maps.ControlPosition.RIGHT_BOTTOM, };},/*enableStreetview: function(){MAP.panorama = MAP.map.getStreetView();MAP.panorama.setPosition(new google.maps.LatLng(MAP.params.address.latitude, MAP.params.address.longitude));var pov = {heading: parseInt(MAP.params.swheading),pitch: parseInt(MAP.params.swpitch),zoom: parseInt(MAP.params.swzoom),};MAP.panorama.setPov(pov);MAP.panorama.setVisible(true);},*/clear: function(){for (var i in MAP.placedMarkers) {var marker = MAP.placedMarkers[i];marker.setMap(null);}MAP.placedMarkers = [];MAP.locations = [];MAP.clusterer.clearMarkers();},});$window.load(function(){google.maps.event.addDomListener(window, 'load', MAP.initialize("elm-header-map-3", [], {"styles":[{"stylers":[{"hue":""},{"saturation":"-50"},{"lightness":"-3"}]},{"featureType":"landscape","stylers":[{"visibility":"on"},{"hue":""},{"saturation":""},{"lightness":""}]},{"featureType":"administrative","stylers":[{"visibility":"on"},{"hue":""},{"saturation":""},{"lightness":""}]},{"featureType":"road","stylers":[{"visibility":"on"},{"hue":""},{"saturation":""},{"lightness":""}]},{"featureType":"water","stylers":[{"visibility":"on"},{"hue":""},{"saturation":""},{"lightness":""}]},{"featureType":"poi","stylers":[{"visibility":"on"},{"hue":""},{"saturation":""},{"lightness":""}]}],"center":{"lat":1,"lng":1},"zoom":18}, {"name":"headerMap","enableAutoFit":true,"enableClustering":false,"typeId":"SATELLITE","clusterRadius":10,"enableGeolocation":false,"radius":false,"streetview":true,"address":{"latitude":"26.3168649","longitude":"-80.0903548"},"swheading":90,"swpitch":5,"swzoom":1,"externalInfoWindow":false,"i18n":{"error_geolocation_failed":"This page has been blocked from tracking your location","error_geolocation_unsupported":"Your browser doesn't support geolocation"}} ));});})(jQuery, jQuery(window), jQuery(document), this);

CVS Pharmacy Medicine Disposal Box - Rx Drug Drop Box (2024)

FAQs

What can you do with old prescription boxes? ›

How can you get rid of your medicines?
  1. Scratch out any personal information printed on the label. ...
  2. Throw out any boxes or extra packaging materials. ...
  3. Put the foil packages and pill bottles with medicine inside another container such as a sealed plastic bag or can. ...
  4. Put that container in your household trash.

How do I dispose of prescription drugs in my area? ›

Pharmacies may offer two types of drug take-back services: on-site collection bins and/or envelopes for mailing back unused medications. To find out if your pharmacy or one near you offers drug collection bins or mail-back envelopes, enter the pharmacy name or your city or ZIP code in the search box below.

Can you take unused medication to any pharmacy? ›

Medicines that are past their expiry date, or are no longer required, can be taken to any pharmacy to be disposed of safely.

Will CVS take empty pill bottles? ›

Yes, CVS does offer medication disposal in Los Angeles, CA.

Can prescription boxes be recycled? ›

How to recycle medicines. Unopened, unused and out-of-date medicines should be returned to pharmacies for disposal. The cardboard box that houses the blister packs can be recycled, as can any paper inserts.

Should you throw out expired cough syrup? ›

Discard any that have expired and those you no longer need. Storing expired or unwanted medicines can increase the risk of: Taking the wrong medicine due to mix-ups. Accidental poisoning in children or pets.

Does CVS take out of date medicine? ›

CVS has also partnered with local law enforcement agencies to dispose of over 1 million pounds of unneeded and expired medications from households across the U.S. When you have expired, unused, or otherwise unneeded medications, using a safe method of disposal minimizes risk for unintended use.

How do you dispose of unwanted pharmaceuticals? ›

The FDA recommends putting drugs in a plastic bag with an undesirable substance, such as cat litter or coffee grounds, and throwing them in the garbage,6 which is then taken to a regulated disposal site. Most unused medicines should not be washed down the sink or toilet.

Where can I donate empty pill bottles near me? ›

Stray animal shelters; The local Society for the Protection of Animals; A local grocery store; and. A local church.

Can I flush old medicine down the toilet? ›

Check the label or the patient information leaflet with your medicine. Or consult the U.S. Food and Drug Administration's list of medicines recommended for disposal by flushing when a take back option is not readily available. Remember, don't flush your medicine unless it is on the flush list.

Can I give my prescription to any pharmacy? ›

Getting your prescription

If you already have your prescription, this can be taken to any community pharmacy you choose. You'll have to wait for it to be dispensed or you can return later to pick it up.

What goes in a doop bin? ›

Traditionally, pharmaceutical disposal was covered by the DOOP Regulations and such waste was called DOOP waste. It is more accurate now to refer to the waste as pharmaceutical waste as a category of healthcare waste. DOOP bins are now pharmaceutical waste bins.

Do I need to remove labels from prescription bottles? ›

When in doubt, remove the medication from the container and dispose of it according to FDA guidelines. Then, rinse out and dry the plastic container to ensure there's no leftover residue. You'll also want to remove the sticker label that contains your personal information from the bottle.

Where can I drop off old pills near me? ›

Locate a Drug Disposal Box
  • Pharmacies, including independent stores and chains.
  • Police departments.
  • Fire stations.
  • Hospitals.
  • Municipal buildings.

How do you dispose of empty pill packets? ›

However, the foil should be recycled with the rest of the blister pack at a pharmacy or through commercial waste collections. The process of tablet blister pack recycling involves the separation of the foil from the plastic packaging. It's then melted down and reused as recycled metals.

Does anyone use old prescription bottles? ›

Some animal shelters and homeless shelters accept bottle donations. Contact your local ones to find out if they're in need of prescription pill bottles.

How to dispose of medications in CA? ›

Medicine Kiosks are installed at nearby locations such as pharmacies and law enforcement offices for residents to simply drop-off their expired or unwanted medicine for safe and free disposal. Enter your zip code to find a nearby Medication Kiosk on MED-PROJECT website.

How do you dispose of unused and expired medicines? ›

Practice of disposal of leftover drugs
Method of disposalNumber (n)Percentage (%)
Return to pharmacy102.6
Land burial164.2
Flush in toilet246.2
Burn71.8
3 more rows
Jan 16, 2024

References

Top Articles
Latest Posts
Article information

Author: Kareem Mueller DO

Last Updated:

Views: 5669

Rating: 4.6 / 5 (46 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Kareem Mueller DO

Birthday: 1997-01-04

Address: Apt. 156 12935 Runolfsdottir Mission, Greenfort, MN 74384-6749

Phone: +16704982844747

Job: Corporate Administration Planner

Hobby: Mountain biking, Jewelry making, Stone skipping, Lacemaking, Knife making, Scrapbooking, Letterboxing

Introduction: My name is Kareem Mueller DO, I am a vivacious, super, thoughtful, excited, handsome, beautiful, combative person who loves writing and wants to share my knowledge and understanding with you.