V
V
Valentin Birulya2020-04-21 20:32:04
JavaScript
Valentin Birulya, 2020-04-21 20:32:04

How to create a complex div from multiple divs?

It is desirable that all this happens at the click of a button.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
alex4answ, 2020-04-21
@alex4answ

as usual, createElement / $(tag), but at least shove it into innerHTML, at least use template, there are a lot of options

S
scottparker, 2020-04-21
@scottparker

$('.btn').click(function() {
 $('body').append("<div class='newBlock'></div>");
 for(i=1; i<=10; i++)
   $('.newBlock').append("<div class ='newSubBlock'></div>");
 });

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question