I did everything I could to make it happen, but without success.
The problem is that I create an element on runtime then bind a function to the element like the fo
try this
$(document).ready(function(){
$('.rem').click(function(){
$('runtime').bind('click',func_name).appendTo("body");
});
});//End of doc
function func_name(){
alert('I got it!');
}
Since you are binding the object before it has been created, you are not getting the desired result.