I have this append method which I made to add more input boxes until there is 10 of them which will disable into making more.
i = 0; $(\'#add-link\').click(funct
append() returns a reference to the original selector, not what was appended. I think you are looking for this:
append()
$('.insert-links').append('') $('.insert-links').find(".new-link:last").slideDown("fast");
Live demo:
http://jsfiddle.net/V4SVt/2/