element.innerHTML = `<div> ENTER HTML CODE </div>`
you have to have the ` before and after the div indicators
the key to the left of the 1 key
element.innerHTML = `<div> ENTER HTML CODE </div>`
you have to have the ` before and after the div indicators
the key to the left of the 1 key
I have the ticker I was already using and the AVStocks ‘series’ on the same page, works great and looks good…

Thanks @Sean!!! :smiling_face_with_sunglasses: :smiling_face_with_sunglasses: :smiling_face_with_sunglasses:
@sean
I knew you could do it faster and better than I could!!! :smiling_face_with_sunglasses:
My question is how you got more than one to show side-by-side?
Can this be done with 2 different modules?
@sean
You could probably get it done better and faster than I could!
are you wanting a ticker, or something more in depth, like charts and the likes?
I don’t know about taking it over, LOL.
Just trying to help!
Well, at the moment it is throwing the following error:

I’ll look at it some more here in a little bit…
Thanks for your input!
So, would the entry be like this: “Cats”, “Bats”, “Bears”,
or like This: “Cats,Bats,Bears”,
?
@strawberry-3-141
Yeah, I got that while trying to write what I had going. Your example looks more correct.
So, now I’m looking at your example but not exactly sure where to insert it into the code to get it to work.
in the config.js, I am looking at the lifeforms array as such:
lifeForms: "Striped Bass,Praying Mantis,Tigers,Hummingbirds,Venus Flytrap,Fox,Bald Eagle",
then I added this to the defaults in the MMM-EOL.js:
lifeForms: ["", "", ""],
then I added your example to the start function:
var lifeFormIds = this.config.lifeForms.split(',');
var lifeFormIds =[];
for (let lifeForm of lifeForms) {
if (this.config.lifeFormArray[lifeForm]) {
lifeFormIds.push(this.config.lifeFormArray[lifeForm]);
}
}
// Set locale.
this.url = "http://eol.org/api/pages/1.0.json?batch=false&id=" + this.config.lifeFormIds.join(',') +
I know this is definitely NOT right. This is where I am getting confused…
Having 2 separate < var lifeFormIds > declared doesn’t look right.
And, placing the ‘join’ part after the URL doesn’t look right either…
change the text-align under title in the css
.MMM-MyCalendar .title {
color: #ff0;
font-size: 55px;
line-height: 115%;
font-weight: 600;
text-align: left;
padding-left: 0;
margin-bottom: 2px;
white-space: nowrap;
text-overflow: ellipsis;
border-radius: 15px;
overflow: hidden;
display: block;
margin-top: 4px;
}
@strawberry-3-141
Yours looks better!
:smiling_face_with_sunglasses:
@strawberry-3-141
This Is what I’ve been working on so far…
getLiforms: function () {
var url = "http://eol.org/api/pages/1.0.json?batch=false&id=";
var requestUrls = [];
var LifeformsArray = this.config.Lifeforms.split(",");
LifeformssArray.forEach(function(lifeform) {
var requestUrl = url + lifeform;
requestUrls.push(requestUrl);
}
Am I even close to the right track???
@strawberry-3-141
Oh, and I think it needs to be placed without spaces…
[“Cats”,“Bats”,“Bears”]
Not sure if that makes a difference with what you are pointing out, but I think it does.
@strawberry-3-141
just to be sure you understand…
He’s not looking for it to show all the lifeforms at the same time, but different ones in intervals set by the user.
Like with Cats, Bats, Bears… Say at an hourly interval show each one individually.
I’m looking at this as well, I brought up the idea with @Mykle1. I see what you are getting at, and I’ve been looking at the same thing, just not sure how to call them up individually at intervals…
Could you explain how you 'plugged it into the node_helper.js file?
I would greatly appreciate it!
TIA!!!