<!DOCTYPE html>
<html>
<head></head>
<body>
<div>
<ul>
<li><span id="add_theme">Add</span></li>
</ul>
</div>
<div class="test"></div>
<script src="jquery.js" type="text/javascript"></script>
<script src="superlist.js" type="text/javascript"></script>
</body>
</html>
$(document).ready(function() {
$('#add_theme').click(function() {
$('<div class="ft_inputs">\n' +
'<input type="text" placeholder="Name theme"/>\n' +
'<textarea rows="5" placeholder="Desription theme"></textarea><div class="remove_theme">Delete</div></div>') .
fadeIn('slow').appendTo('.test');
});
$('.remove_theme').click(function() {
$('.ft_inputs').remove();
});
});
$('#add_theme').click(function() {
$('<div class="ft_inputs">\n' +
'<input type="text" placeholder="Name theme"/>\n' +
'<textarea rows="5" placeholder="Desription theme"></textarea><div class="remove_theme">Delete</div></div>') .
fadeIn('slow').appendTo('.test');
$('.remove_theme').click(function() {
$('.ft_inputs').remove();
});
});
$(document).ready(function() {
$('#add_theme').click(function() {
$('<div class="ft_inputs">\n' +
'<input type="text" placeholder="Name theme"/>\n' +
'<textarea rows="5" placeholder="Desription theme"></textarea><div class="remove_theme">Delete</div></div>') .
fadeIn('slow').appendTo('.test');
});
$('.test').on('click', '.remove_theme', function() {
$('.ft_inputs', '.test').last().remove();
});
});