I have a contact form in a div on it's own with opacity 0, and a div where content is dynamically manipulated depending on what the user click on the menu.
After the user gets to the last stage of the menu i need to clear the content of the div that displays everything and then "move" the form div into it,
would something like this work?
$('#menu_form').on('click', function() {
$('#form_div').append('#display_div');
});
So to recap 2 already existing divs, need to place one of them into the other on click.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…