Skip to content
Advertisement

unable to change content of duplicated modal card

JavaScript
JavaScript
“` I’ve duplicated six modal cards that operate OK with javascript, but they are all identical and I can’t change different html content. I spent the entire day trying to solve this problem while feeling panicked. I have a deadline until Monday and other tasks to complete, so if I don’t succeed here, I won’t obtain my first internship. Please assist

Advertisement

Answer

No need to get panic. It is a part of life as your are going to start your journey. Keep yourself calm and motivated. Things will get better with time.

As per my understanding the question, you want to change the content of duplicated card which have the same classes name. If it is the case, you can achieve as follows

JavaScript

If you want to change text of all cards at once with same text then you can perform iterations over bkContEle collection. For some selective you can do as i did or also through iteration with conditional checks based on the index of collection elements.

In above solution, using innerHTML is SO NOT RECOMMENDED. Instead, you should create a textNode. This way, you are “binding” your text and you are not, at least in this case, vulnerable to an XSS attack. More detailed answer can be found here How do I change the text of a span element using JavaScript?.

The right way to do is as follows:

JavaScript

I hope, it gonna help you out to solve your problem.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement