I'm using JQuery to let users dynamically add & remove form fields, but it's not working properly. I can't see why this code shouldn't work but it doesn't..
It works fine removing the first field (which is "hard-coded" in the HTML), but it won't remove the fields that's been added dynamically..
here's my JQuery code
$("#addDog").click(
function(event) {
event.preventDefault();
var doglist = <?php echo "'" . $javadogs . "'"; ?>;
var newdog = '<div><select name="resDog[]" class="select">' + doglist + '</select> <input type="text" class="shortinput" name="resResult[]" size="20" value="" /> <a href="#" class="deleteDog"><img src="/admin/images/delete.png" alt="Ta bort hund" /></a></div>';
$(this).parent().before(newdog);
});
$(".deleteDog").click(
function(event) {
event.preventDefault();
$(this).parent().remove();
});
I've seen answers to similar questions using JQuery's live() function, but it's been deprecated since JQuery 1.7, so I can't use that...
Tried using on() but that didn't work either =/
Any ideas?

$.on()look like? It's syntax is slightly different than$.live(). – Jared Farrish Jan 8 '12 at 1:45