I\'m not sure if this would be the best option.. But I want the option that when the user clicks a button, it will add another div or li.
I am going to allow users to u
Your example updated on jsFiddle
$("input[type=submit]").click(function(){ $("").html("item").appendTo("ul"); })
You can create elements using $("") and set attributes, add classes and so on. Then append where you want.
$("")