Find Free Food and Groceries (2024)

').show(); // Loading... faSetCookie('cms_cons_zip', zip, 365); FA.ws.request('GetOrganizationsByZip', { zip: zip }, 'Organization', function(data) { var counter = 0; results.empty(); for (var key in data) { counter++; if (counter > 2) { return; } // Display only first two results var org = data[key]; if (org.SocialUrls.WebUrl != '') { window.location = org.SocialUrls.WebUrl+'&twoStep=true&zip='+zip+'&s_channel='+channel+'&s_subsrc='+subsrc+'&s_keyword='+keyword; } else { var profileUrlName = (org.FullName.replace(/ - /g, '-')).replace(/ /g, '-').toLowerCase(); var profileUrl = '/find-your-local-foodbank/' + (profileUrlName.replace(/[&]/g, 'and')).replace(/[^a-zA-Z0-9-]/g, ''); $('.blurb').html('Based on that zip code, online SNAP application assistance is not available. Please contact your local food bank for help with applying for SNAP.'); results.append([ '

', '', org.FullName, ' • ', org.MailAddress.City, ', ', org.MailAddress.State, ' • ', '' + org.Phone + '', ' • ', org.URL, '', '

' ].join('')); results.show(); } } if (counter == 0) { // No results results.append('This is an invalid zip. Please try a valid U.S. zip'); } }, function(response) { // Error results.html('Our online search is not working at this time. To find out your food bank, please call us at 800.771.2303'); // console.log( "response" ) // console.log( response ) }); if (doState) { stateHungerMeterByZip(zip); } } } var s_keyword = Drupal.behaviors.fa*getAttributionValue("s_keyword"); s_keyword = s_keyword.substring(0, 200); var s_channel = Drupal.behaviors.fa*getAttributionValue("s_channel"); s_channel = s_channel.substring(0, 200); var s_subsrc = Drupal.behaviors.fa*getAttributionValue("s_subsrc"); s_subsrc = s_subsrc.substring(0, 200); var s_subsrc = (s_subsrc != '') ? s_subsrc : window.location.href; if (s_keyword.length > 0) { $('input[name="s_keyword"]').val(s_keyword); } if (s_channel.length > 0) { $('input[name="s_channel"]').val(s_channel); } if (s_subsrc.length > 0) { $('input[name="s_subsrc"]').val(s_subsrc); } // GSNAP: Find Your Local Food Bank $('#gsnap_zip_search_form button[type="submit"]').click(function(e) { e.preventDefault(); $('#gsnap_zip_search_form input[name="zip"]') .val($('#gsnap_zip_search_form input[name="zip"]').val()) .attr('value',$('#gsnap_zip_search_form input[name="zip"]').val()); findYourLocalFoodBank($('#gsnap_zip_search_form input[name="zip"]').val(), false); }); // --- Find Your Local Food Bank --- function findYourLocalFoodBankEn(zip, doState) { var results = jQuery('#homepage_zip_search_results'); results.empty().hide(); // Clear the display // Validate zip var dZip = zip.replace(/\D/g,''); if (dZip.length != 5 || dZip != zip) { results.append('This is an invalid zip. Please try a valid U.S. zip').show(); return; } // Do the request if (zip != '') { results.append('').show(); // Loading... faSetCookie('cms_cons_zip', zip, 365); FA.ws.request('GetOrganizationsByZip', { zip: zip }, 'Organization', function(data) { var counter = 0; results.empty(); for (var key in data) { counter++; if (counter > 2) { return; } // Display only first two results var org = data[key]; var profileUrlName = (org.FullName.replace(/ - /g, '-')).replace(/ /g, '-').toLowerCase(); var profileUrl = '/find-your-local-foodbank/' + (profileUrlName.replace(/[&]/g, 'and')).replace(/[^a-zA-Z0-9-]/g, ''); results.append([ '

', '', org.FullName, ' • ', org.MailAddress.City, ', ', org.MailAddress.State, ' • ', '' + org.Phone + '', ' • ', org.URL, '', '

' ].join('')); } if (counter == 0) { // No results results.append('This is an invalid zip. Please try a valid U.S. zip'); } }, function(response) { // Error results.html('Our online search is not working at this time. To find out your food bank, please call us at 800.771.2303'); }); if (doState) { stateHungerMeterByZipEn(zip); } } } function stateHungerMeterByZipEn(zip) { if (zip != '') { // Do the request FA.ws.request('GetStateStatisticsByZip', { zip: zip }, '/', function(data) { if (data && data.StateID && data.Name) {// displayHungerMeterResults(data.Name, data.StateID, data.Name, data.StateStats.FoodInsecurityRate); displayHungerMeterResults(data.Name, data.StateID, data.Name, data.StateStats.MMG_FI_FULL_POP_RATE); jQuery('#homepage_ending_select').val(data.StateID); faSetCookie('cms_cons_state', data.StateID, 365); return; } // No results // ... }, function(response) { // Error // No results behaviour }); } } // Homepage: Find Your Local Food Bank jQuery('#homepage_zip_search_form_en button[type="submit"]').once().click(function(e) { e.preventDefault(); $('#homepage_zip_search_form_en input[name="zip"]') .val($('#homepage_zip_search_form_en input[name="zip"]').val()) .attr('value',$('#homepage_zip_search_form_en input[name="zip"]').val()); findYourLocalFoodBankEn(jQuery('#homepage_zip_search_form_en input[name="zip"]').val(), true); }); var cms_cons_zip = fa*getCookie('cms_cons_zip'); // Get zip from cookies if (cms_cons_zip && cms_cons_zip == '') { cms_cons_zip = jQuery('#cms_cons_zip').val(); // Get zip from user's record } if (cms_cons_zip && cms_cons_zip != '') { // We already have the user's zip jQuery('#homepage_zip_search_form_en input[name="zip"]').attr('value',cms_cons_zip).val(cms_cons_zip); findYourLocalFoodBankEn(cms_cons_zip, true); } // --- Hunger Meter --- // Homepage: State hunger meter jQuery('#homepage_ending_select').change(function(e) { e.preventDefault(); var id = jQuery(this).val(); switch (id) { case 'US' : nationHungerMeter(); break; default : if (id != '') { faSetCookie('cms_cons_state', id, 365); stateHungerMeter(id); } break; } }); if (cms_cons_zip && cms_cons_zip != '') { // We already have the user's zip // Do nothing } else { var cms_cons_state = fa*getCookie('cms_cons_state'); // Get state from cookies if (cms_cons_state && cms_cons_state == '') { cms_cons_state = jQuery('#cms_cons_state').val(); // Get state from user's record } if (cms_cons_state && cms_cons_state != '') { // We already have the user's state jQuery('#homepage_ending_select').val(cms_cons_state); faSetCookie('cms_cons_state', cms_cons_state, 365); stateHungerMeter(cms_cons_state); } else { // Nationwide nationHungerMeter(); } } } });})(jQuery);});

If you need food today

Your local food bank can help you find food today, even if you need temporary help. They partner with food pantries, soup kitchens, and meal programs in your local community to give away free food.

Enter your zip code to find the food bank partnering with Feeding America. They'll share the locations and hours of nearby food distributions.

On

Find Free Food and Groceries (2024)
Top Articles
Latest Posts
Article information

Author: Arline Emard IV

Last Updated:

Views: 5584

Rating: 4.1 / 5 (72 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Arline Emard IV

Birthday: 1996-07-10

Address: 8912 Hintz Shore, West Louie, AZ 69363-0747

Phone: +13454700762376

Job: Administration Technician

Hobby: Paintball, Horseback riding, Cycling, Running, Macrame, Playing musical instruments, Soapmaking

Introduction: My name is Arline Emard IV, I am a cheerful, gorgeous, colorful, joyous, excited, super, inquisitive person who loves writing and wants to share my knowledge and understanding with you.