Skip to content
Advertisement

is there a way to prevent repeating code in html I’m using bootstrap 4 collapse like 20 times in one page

JavaScript

Hello I have been copying and pasting this like 10-20 times on my code changing the id the header id and the button. I also had been copying and pasting a bunch of other html code (image tag about 20 images) I was wondering if there was a way to stop repeating code (like a function) with pure html css. If not can you do it with plain vanilla js? if not then what are the other ways?

In short

Most important question (A is most important C is least)

  • A) is there a way to prevent repeating code with the collapse code above with just pure HTML/CSS? if yes how?
  • B) is there a way to prevent repeating code with the collapse code above with just pure HTML/CSS/vanilla js? if yes how?
  • C) is there a way to prevent repeating code with the collapse code above with just pure HTML/CSS/angular/react? if yes how?

Advertisement

Answer

You can use a function to repeat how many times you want to duplicate your element, in the following snippet I created a function that will clone .card node using .cloneNode() and iterate a number of times, then modify the ids and attributes using querySelector() on the cloned node, here is a snippet for option A:

JavaScript
JavaScript

If you are looking for option C solution, it will be a bit complicated if your project is not already using React or other client rendering library or front-end framework, you have to use Webpack with Babel to setup the front-end framework and code-base for your project, here is a working codesandbox sample for on how you might implement your bootstrap front-end using React.

In the following snippet, I created a component function and used Array.map() on array [1, 2, 3, 4, 5] to create 5 components:

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