Best Rubber Mulch® buys directly from major distributors, so you receive your mulch direct from the factory. We consistently provide our customers with high quality, 99.9% wire-free rubber mulch at a fraction of the cost of big box stores. Calculate how many pallets you need to cover your square footage with our rubber mulch calculator.
Playground Rubber Mulch
Rubber mulch for playgrounds is quickly becoming a popular surfacing option. With fall protection of up to 12’ to 16′ at 6″ depth, rubber mulch meets and exceeds ASTM standards for playground safety. Keep children safe on commercial and residential play areas, including:
Landscaping rubber mulch also deters insects and weeds from calling your garden home. Our rubber mulch is safe, non-toxic and odor free, giving your yard or playground a durable, easy to maintain ground covering.
Eco-Friendly Surfacing Solution is Perfect for Many Applications
Backyard rubber mulch has a wide variety of uses in addition to landscaping and playgrounds. Rubber mulch is also frequently used as a dust-reducing, secure equestrian arena surface. The springy rubber mulch reduces joint and bone strain of the horses, while providing increased fall protection for the riders.
Indoor and outdoor shooting ranges have also turned to rubber mulch as a safe, effective backstop. The rubber mulch dampens the noise and absorbs the shock of the bullet, significantly reducing the number of ricochet occurrences.
Training courses also benefit from rubber mulch. The military, police academy, ropes courses and climbing walls have all begun to turn to rubber mulch. Its high impact attenuation and shock absorbency ratings lead to fewer injuries. Rubber mulch doesn’t deteriorate like traditional wood chips, providing durable, slip resistant footing.
function MulchCalc() {
var a = document.getElementById("ppsft").value;
var b = (document.getElementById("Depther").value / 12);
var c = document.getElementById("Widther").value;
var d = document.getElementById("Lengther").value;
if (a > 0) {
if (b > 0) {
if (c > 0) {
if (d > 0) {
var math = a * c * d;
var tpo = Math.round((math * 10) / 10).toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
jQuery("#tpo").html(tpo);
g = math / 2000;
var tto = g.toFixed(2);
jQuery("#tto").html(tto);
var tba = Math.round(((math * 10) / 10) / 40).toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
jQuery("#tba").html(tba);
var tpa = Math.ceil((math / 20) / 100);
jQuery("#tpa").html(tpa);
jQuery("#mulch_results").addClass('show-results');
setTimeout(function () {
jQuery("#total_lbs").addClass('grow');
}, 300);
setTimeout(function () {
jQuery("#total_tons").addClass('grow');
}, 500);
setTimeout(function () {
jQuery("#total_bags").addClass('grow');
}, 700);
setTimeout(function () {
jQuery("#total_pallets").addClass('grow');
}, 900);
}
else { var calcerror = '
*Length has not been set properly
'; $("#calcerror").html(calcerror);}
}
else { var calcerror = '
*Width has not been set properly
'; $("#calcerror").html(calcerror);}
}
else { var calcerror = '
*Depth has not been set properly
'; $("#calcerror").html(calcerror);}
}
else { var calcerror = '
*Pounds Per Square Inch has not been set properly
'; $("#calcerror").html(calcerror);}
};
function ChangeLbsSqFt(e) {
var t = e.value;
if (t == 1) { document.getElementById("ppsft").value = "2.33"; }
if (t == 2) { document.getElementById("ppsft").value = "3.495"; }
if (t == 3) { document.getElementById("ppsft").value = "4.66"; }
if (t == 4) { document.getElementById("ppsft").value = "6.99"; }
if (t == 5) { document.getElementById("ppsft").value = "9.32"; }
if (t == 6) { document.getElementById("ppsft").value = "11.65"; }
if (t == 7) { document.getElementById("ppsft").value = "13.98"; }
console.log(t);
};