[jQuery] remove one element in an array
Hi all,
When i click once on a button, i create one picture on the fly. And so
on. It works ok.
Then, using livequery, when i click on one of the all created
pictures, i would like to see it removed. But it appears that only the
first pic is removed (since all have the same name).
What is my mistake ?
regards,
f.
<JQUERY>
$("#IdButton").click( function() {
var pic="<img id=\"IdPicture\" name=\"IdPicture[]\" src=\"../
images/icone_ko_small.png\"/>
"
$(this).before(pic);
});
$("#IdPicture").livequery('click', function(event) {
$(this).remove();
});
<HTML>
<input type="submit" id="IdButton" class="button">