Justice and Care help rescue victims of slavery, human trafficking, and sex trafficking. They help strengthen and empower individuals to rebuild their lives by bringing awareness around the world and work with the police to pursue and dismantle criminal networks and bring perpetrators to justice. They develop community outreach programs and spark systemic change that prevents at risk individuals from the dangers of captivity and oppression.
Kids Against Animal Poaching is an organization founded in 2015 by a 13-yr-old girl named Emily Walker to protect wild animals around the world from poaching. Through their partnership with Space for Giants, Emily and her KAAP Ambassadors are working diligently to raise awareness about the relationship between poaching, wildlife trafficking, and zoonotic diseases (i.e. Covid 19, HIV/AIDS, Ebola and SARS). Your donation will help prevent future pandamics by helping to stop the illegal wildlife trade and by helping to save our planet's remaining wildlife and the lands upon which they depend.
Ready to Succeed is a career and personal development program that provides youth impacted by foster care with the resources, relationships, and opportunities they need to thrive, both personally and professionally. They empower the teens they work with to graduate college, launch successful careers, and reach their full potential. RTS provides them with the kind of support they need, when they need it to ensure they have the resources, relationships, and opportunities they need to succeed in all facets of life.
function duringBusinessHours(businessHoursData) {
const accountTimezone = businessHoursData['timezone']
const localNow = moment()
return businessHoursData['business_hours'].some(function(businessHour) {
const businessHoursDays = businessHour['days'].split(',')
return businessHoursDays.some(function(businessHourDay) {
const day = moment().tz(accountTimezone)
.startOf('week')
.add(businessHourDay % 7, 'days')
const fromTime = day.clone()
.add(businessHour['from_time'].split(':')[0], 'hours')
.add(businessHour['from_time'].split(':')[1], 'minutes')
const toTime = day.clone()
.add(businessHour['to_time'].split(':')[0], 'hours')
.add(businessHour['to_time'].split(':')[1], 'minutes')
return fromTime <= localNow && localNow < toTime
})
})
}
// Set your timezone using the tz database name format (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).
// Set your business hours. Days are numbered 1 to 7, starting with Monday. Time is set in 24 hours format.
var businessHoursData = {
'timezone': 'US/Pacific',
'business_hours': [{
'days': '1,2,3,4,5',
'from_time': '10:00',
'to_time': '17:00'
}]
}
var gorgiasChatInterval = window.setInterval(function() {
var container = document.querySelector('#gorgias-chat-container')
if (container) {
window.clearInterval(gorgiasChatInterval); // this line breaks out of the loop - make sure it's not deleted.
if (!duringBusinessHours(businessHoursData)) {
container.remove()
}
}
}, 50);