SPlus.Taxonomy.getTermsInWeb (url, termSetId, storeId, function (terms){
for (var i=0; i < terms.length; i++) {//Loop the terms Array
var term = terms [i];//Getting one of the requested terms
//TODO: Implement what to do with the terms and it’s child terms
}
}, function (errorResponse){
var error = errorResponse['error#displayValue']; //Getting the error
//TODO: Implement how to handle errors
}, function (cancelResponse){
//TODO: Implement how to handle a user’s cancel
});