i have a ajax page using jquery
when post data and get page with this code:
$.ajax({
type: 'POST',
url: "myurl",
data: 'methods',
error: function() {
alert('Error!');
},
success: function(data) {
$('#content').html(data);
}
});
page its ok and #content is change and no problembut all event/function in new content #content not run, why?
please help me
thanks


Sign In
Create Account


Back to top









