Mix all ingredients at medium speed for about 2 minutes. Pour evenly into baking cups about 3/4 full and bake until light golden brown. Approximately 15 minutes at 350 degrees.
Mix all ingredients at medium speed for about 2 minutes. Pour evenly into baking cups about 3/4 full and bake until light golden brown. Approximately 15 minutes at 350 degrees.
Re: Please give me your favorite dessert recipes!
I made these last night...I added frosting to make the cupcakes
Pumpkin Muffins
Ingredients
var aIngredients = new Array(); var iBaseServe = 18; aIngredients[aIngredients.length] = {QTY:"1", UNIT:"", INAME:"yellow cake mix"};aIngredients[aIngredients.length] = {QTY:"1", UNIT:"16 oz.", INAME:"pumpkin"};aIngredients[aIngredients.length] = {QTY:"3", UNIT:"", INAME:"eggs"};aIngredients[aIngredients.length] = {QTY:"1/2 c", UNIT:"", INAME:"vegetable oil"};aIngredients[aIngredients.length] = {QTY:"1 tsp", UNIT:"", INAME:"baking soda"};aIngredients[aIngredients.length] = {QTY:"2 tsp", UNIT:"", INAME:"cinnamon"};function writeIngredients() { if(document.getElementById("txtServes").value0) { sToWrite = ""; for(i=0;i
.QTY));
var qtyToPrint = aIngredients
.QTY!=""?tempQty:"";
var unitToPrint = aIngredients
.UNIT!=""?aIngredients
.UNIT:"";
if(aIngredients
.QTY!="") {
if(tempQty
.UNIT.toLowerCase().replace(/s/g,"").indexOf("cup")>-1){
qtyToPrint = chkFrac(Math.round((tempQty*48)*100)/100);
unitToPrint = "teaspoon";
} else if(tempQty
.UNIT.toLowerCase().replace(/s/g,"").indexOf("tablespoon")>-1 || aIngredients
.UNIT.toLowerCase().replace(/s/g,"").indexOf("tbl")>-1 || aIngredients
.UNIT.toLowerCase().replace(/s/g,"").indexOf("tbs")>-1) {
qtyToPrint = chkFrac(Math.round((tempQty*3)*100)/100);
unitToPrint = "teaspoon";
} else {
qtyToPrint = tempQty>=1?tempQty:chkFrac(tempQty);
unitToPrint = aIngredients
.UNIT;
}
}
sToWrite += ""+chkFrac(qtyToPrint)+" "+ unitToPrint +" "+ aIngredients
.INAME +"";
}
sToWrite += "";
}
document.getElementById("recIngredients").innerHTML = sToWrite;
function normalizeQty(qty) {
var aTempQty = qty.replace(/-/g," ").split(" ");
if(aTempQty.length==2) {
return eval(aTempQty[0])+eval(aTempQty[1]);
}
return eval(aTempQty[0]);
}
function convertQty(qty) {
var str = document.getElementById("txtServes").value;
var splitVal = str.split("-");
var splitValue = document.getElementById("txtServes").value;
if (splitVal[1] === undefined) {
}
if (splitVal[1] !== undefined){
splitValue = splitVal[1];
}
return Math.floor(((qty/iBaseServe)*splitValue)*100)/100;
}
function chkFrac(param) {
for(elem in convArr) {
if(elem==param) {
return convArr[param];
}
}
if(param.toString().split(".").length==2) {
var wholeNum = param.toString().split(".")[0]+" ";
wholeNum==0?wholeNum="":"";
var deciNum = chkFrac(Math.round(("0."+(param.toString().split(".")[1]))*10)/10);
return wholeNum+deciNum;
}
return param;
}
}
Cooking Instructions
Mix all ingredients at medium speed for about 2 minutes. Pour evenly into baking cups about 3/4 full and bake until light golden brown. Approximately 15 minutes at 350 degrees.
I made these last night...I added frosting to make the cupcakes
Pumpkin Muffins
Ingredients
var aIngredients = new Array(); var iBaseServe = 18; aIngredients[aIngredients.length] = {QTY:"1", UNIT:"", INAME:"yellow cake mix"};aIngredients[aIngredients.length] = {QTY:"1", UNIT:"16 oz.", INAME:"pumpkin"};aIngredients[aIngredients.length] = {QTY:"3", UNIT:"", INAME:"eggs"};aIngredients[aIngredients.length] = {QTY:"1/2 c", UNIT:"", INAME:"vegetable oil"};aIngredients[aIngredients.length] = {QTY:"1 tsp", UNIT:"", INAME:"baking soda"};aIngredients[aIngredients.length] = {QTY:"2 tsp", UNIT:"", INAME:"cinnamon"};function writeIngredients() { if(document.getElementById("txtServes").value0) { sToWrite = ""; for(i=0;i
.QTY));
var qtyToPrint = aIngredients
.QTY!=""?tempQty:"";
var unitToPrint = aIngredients
.UNIT!=""?aIngredients
.UNIT:"";
if(aIngredients
.QTY!="") {
if(tempQty
.UNIT.toLowerCase().replace(/s/g,"").indexOf("cup")>-1){
qtyToPrint = chkFrac(Math.round((tempQty*48)*100)/100);
unitToPrint = "teaspoon";
} else if(tempQty
.UNIT.toLowerCase().replace(/s/g,"").indexOf("tablespoon")>-1 || aIngredients
.UNIT.toLowerCase().replace(/s/g,"").indexOf("tbl")>-1 || aIngredients
.UNIT.toLowerCase().replace(/s/g,"").indexOf("tbs")>-1) {
qtyToPrint = chkFrac(Math.round((tempQty*3)*100)/100);
unitToPrint = "teaspoon";
} else {
qtyToPrint = tempQty>=1?tempQty:chkFrac(tempQty);
unitToPrint = aIngredients
.UNIT;
}
}
sToWrite += ""+chkFrac(qtyToPrint)+" "+ unitToPrint +" "+ aIngredients
.INAME +"";
}
sToWrite += "";
}
document.getElementById("recIngredients").innerHTML = sToWrite;
function normalizeQty(qty) {
var aTempQty = qty.replace(/-/g," ").split(" ");
if(aTempQty.length==2) {
return eval(aTempQty[0])+eval(aTempQty[1]);
}
return eval(aTempQty[0]);
}
function convertQty(qty) {
var str = document.getElementById("txtServes").value;
var splitVal = str.split("-");
var splitValue = document.getElementById("txtServes").value;
if (splitVal[1] === undefined) {
}
if (splitVal[1] !== undefined){
splitValue = splitVal[1];
}
return Math.floor(((qty/iBaseServe)*splitValue)*100)/100;
}
function chkFrac(param) {
for(elem in convArr) {
if(elem==param) {
return convArr[param];
}
}
if(param.toString().split(".").length==2) {
var wholeNum = param.toString().split(".")[0]+" ";
wholeNum==0?wholeNum="":"";
var deciNum = chkFrac(Math.round(("0."+(param.toString().split(".")[1]))*10)/10);
return wholeNum+deciNum;
}
return param;
}
}
Cooking Instructions
Mix all ingredients at medium speed for about 2 minutes. Pour evenly into baking cups about 3/4 full and bake until light golden brown. Approximately 15 minutes at 350 degrees.