1
I have 2 div's
One getting the contents of the other:
$( "#conta" ).html( $( "#escolhaMembro" ).html()
to #escolhaMembro
is with display: none
.
When the contents of #escolhaMembro
appears in the body
within the #conta
, also comes a button
.
That one button
is not receiving the event of jQuery
// JavaScript Document
$(document).ready(function (e) {
$("#buttonCadastrarCelulaMembro").on("click", function () {
...
What’s the problem here?
You could try playing the code on a fiddle ?
– Leonardo Coelho