JUST RAWR Calculator
It must be emphasized that this is purely a guideline to recommended daily serving size and must be adjusted by the owner at home as every dog’s needs are different.
Approximate Activity Level of your dog
Approximate Weight of your dog
let Foodweight = [
['100g', '200g','400g', '600g', '800g', '1000g', '1200g', '1400g', '1600g'],
['90g', '180g','350g', '525g', '700g', '875g', '1050g', '1200g', '1400g'],
['75g', '150g','300g', '450g', '600g', '750g', '900g', '1150g', '1200g'],
['65g', '130g','250g', '370g', '500g', '620g', '750g', '870g', '1000g'],
];
function getFood() {
var activitylevel = document.getElementById("Activity").value;
var dogweight = document.getElementById("Weight").value;
var food = Foodweight[activitylevel][dogweight]
if (typeof food !== "undefined"){
console.log(food);
document.getElementById("PasteResult").innerHTML = "Your dog needs approximately " + food + " of Just RAWR per day. Please note that this is only a guideline";
}
}
function reset(){
document.getElementById("PasteResult").innerHTML = "";
document.getElementById("Activity").selectedIndex = 0;
document.getElementById("Weight").selectedIndex = 0;
}