//next.php//////////////////////////////////////////////
<script>
$(document).ready(function(e) {
$('a').click(function(){
$.get('/next.php', function(data){
$('#container').append(data);
});
});
$('.btn').click(function(){
alert();
});
});
</script>
<a>GET</a>
<div id="container"></div>
//next.php//////////////////////////////////////////////
<input type="button" class="btn" />
I have a page use $.get and append the data from another page.
my problem is in my first page, i have script .btn click - alert();
its not working from those button get
from another page.