I'm trying to create a list application that will let a user inputs an item into a text field that will be dynamically created on submit (list tag). I then want to be able to delete any of the item added individually (using a delete button that will be added next to each list tag).
So far I managed to create the Array of Objects after submitting input field.
How can I only grab the "value" of Array Object in order to create my list tag dynamically? How can I then delete the element selected?
I would like to complete that application by using the Observer Pattern.
See my code bellow: http://jsfiddle.net/Lk3p8/
Thanks