28%
<!--
101%
-->
<!--
201%
-->
Help Us Reach Our Goal by Midnight May 27!
The Greatest Journey
Children
Total Amount
$ 72
Add me to the
25K Disciple Maker List below.
Donate
Why $6 per child?
$6 Per Child
×
provides one child with a 12-lesson Bible study, a graduation certificate, a New Testament in his or her language, and the guidance of a trained teacher/mentor in the community.
Join this five-day campaign to provide The Greatest Journey discipleship training to 25,000 more shoebox recipients.
$150,000
5 Days
25,000 Kids
Total So Far: 7,122 Kids
Share this campaign to help us reach our goal!
<!--
Watch Video Subhead
Please enable Javascript to watch this video
-->
<!---->
Through The Greatest Journey, children in more than 100 countries are learning to follow Jesus Christ. This exciting Samaritan's Purse project gives children a strong faith foundation and teaches them to share about the Lord with family and friends!
Children
Total Amount
$ 72
Add me to the
25K Disciple Maker List below.
Donate
Why $6 per child?
$6 Per Child
×
provides one child with a 12-lesson Bible study, a graduation certificate, a New Testament in his or her language, and the guidance of a trained teacher/mentor in the community.
25K Disciple Maker List
Join the list of people who are supporting this initiative and are committed to praying that 25,000 more children worldwide will be discipled as a result of this campaign.
Excited about this campaign?
Show your support on social media.
⇣Download
⇣Download
⇣Download
⇣Download
⇣Download
⇣Download
//
(function($){
// /our-ministry/check-out/?pc=013943&amt=72.00
// input-increment data-target-id="dis-input-count"
// increment-up, increment-down
var donationUrlSingle = '/our-ministry/check-out/?pc=013943&amt=';
var donationUrlMonthly = '/our-ministry/check-out/?pc=013943&repeat=true&amt=';
var perDonationCost = 6;
function init()
{
incrementControls();
donationPopupControls();
donationUpdate();
}
function incrementControls()
{
var classControl = 'input-increment';
var classIncUp = 'increment-up';
var classIncDown = 'increment-down';
var $control = $('.' + classControl);
function increment(e)
{
var $this = $(e.target);
var $parent = $this.parent();
// var $target = $('#' + $parent.data('target-id'));
var $target = $("." + $parent.data("target-class"));
var min = $parent.data('min');
var max = $parent.data('max');
var newValue = 0;
if($this.hasClass(classIncUp)) {
newValue = parseFloat($target.val()) + 1;
if(typeof max == 'undefined')
{
$target.val(newValue);
}
else if(newValue = parseFloat(min)) {
$target.val(newValue);
}
}
// trigger the change event
$target.change();
}
// register the control events
$control.find('.' + classIncUp).live("click",(increment));
$control.find('.' + classIncDown).live("click",(increment));
// map the keydown to the change event for input
$control.each(function(index){
$this = $(this);
$target = $('#' + $this.data('target-id'));
$target.live("keyup", function(e){
$(this).change();
});
});
}
function donationUpdate() {
$('#dis-input-count-single,#dis-input-count-single2,#dis-input-count-monthly').live("change", function(e){
var $this = $(e.target);
var value = parseInt($this.val()); // force the value to non decimal
value = !isNaN(value) ? value : 0 ;
var total = value * perDonationCost;
// -- update the display for dependant elements --
$this.val(value);
$('#dis-checkout-total-single,#dis-checkout-total-monthly').text(total + '');
$('input.hidden-input-calc-amt').val(total + '');
//$('#dis-checkout-single').attr('href', donationUrlSingle + total);
//$('#dis-checkout-monthly').attr('href', donationUrlMonthly + total);
});
}
function donationPopupControls() {
/* opens the discipleship form */
$('.action-donate').live("click", function(e){
if ($(this).attr("id")=="action-donate-monthly") {
$('#donation-monthly').fadeIn();
e.preventDefault();
}
if ($(this).attr("id")=="action-donate-single") {
$('#donation-single').fadeIn();
e.preventDefault();
}
if ($(this).attr("id")=="action-donate-single2") {
$('#donation-single2').fadeIn();
e.preventDefault();
}
});
/* closes the discipleship form */
$('#dis-checkout-close-single,#dis-checkout-close-single2,#dis-checkout-close-monthly').live("click", function(e){
$('#donation-single, #donation-single2,#donation-monthly').fadeOut();
e.preventDefault();
});
}
//initialize it
init();
if (window.location.href.indexOf("email_a")>0) {
$('#donation-single').fadeIn();
}
if (window.location.href.indexOf("email_b")>0) {
$('#donation-monthly').fadeIn();
}
}(jQuery));
jQuery.ajax({
url: "https://s3.amazonaws.com/static.samaritanspurse.org/tgjdisplayname.json",
dataType: "json",
success: function (data) {
var results = data.Records;
for (var i = 0; i < results.length; i++) {
jQuery('.split-list').prepend(''+results[i]+'');
}
columnize();
},
error: function (jqXHR, textStatus, errorThrown) {
console.log(errorThrown);
}
});
function columnize(){
var num_cols = 3,//adjust this to how many columns you want
container = jQuery('.split-list'),
listItem = 'li',
listClass = 'sub-list';
container.each(function() {
var items_per_col = new Array(),
items = jQuery(this).find(listItem),
min_items_per_col = Math.floor(items.length / num_cols),
difference = items.length - (min_items_per_col * num_cols);
for (var i = 0; i < num_cols; i++) {
if (i < difference) {
items_per_col[i] = min_items_per_col + 1;
} else {
items_per_col[i] = min_items_per_col;
}
}
for (var i = 0; i < num_cols; i++) {
jQuery(this).append(jQuery('').addClass(listClass));
for (var j = 0; j < items_per_col[i]; j++) {
var pointer = 0;
for (var k = 0; k < i; k++) {
pointer += items_per_col[k];
}
jQuery(this).find('.' + listClass).last().append(items[j + pointer]);
}
}
});
}
function setTGJDisplay(checkbox) {
var $this = jQuery(checkbox);
var shouldDisplay = $this.prop("checked");
jQuery("[data-sku='013943']").data("tgjdisplay",shouldDisplay);
jQuery("[data-sku='013943']").data("entityAttributes","tgjdisplay:" + shouldDisplay);
if (console) console.log(jQuery("[data-sku='013943']").data("tgjdisplay"));
}