I am having trouble to clear text field value created from jQuery clone function. I am just copying add_new_content content and appending that one with last
You can match the cloned element with find() and reset its value with val():
$('.add_new_content:last').clone() .find("input:text").val("").end() .appendTo('.add_new_content:last');