I use jQuery to take the value of a form element and put it in the list element tag. The maximum value of the three elements of the list (they should become tags for the image).
The problem is that I want people to be able to remove any erroneous tags that they entered by clicking on them, but elements (which are dynamically inserted into the <gt> tag using jQuery) cannot be accessed by click using:
$('li.tag').click(function(){ });
he won't even turn off the warning.
Does anyone have any ideas how I can get around this problem?
source
share