I'm using jQuery to take the value of a form element and place it inside a list item tag. There is a maximum value of three list items (these are to become tags for an image).
The problem is that i want people to be able to remove any erroneous tags they've entered by clicking on them, but the items (which are dynamically inserted into a <ul> tag using jQuery) are not clickable using:
$('li.tag').click(function(){ /* Do stuff here */ });
it won't even fire off an alert.
Does anyone have any ideas how i can work around this problem?