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
Like SimpleCoder's solution, but in only one line using appendTo():
appendTo()
$('').appendTo($('.insert-links')).slideDown("fast");
Demo: http://jsfiddle.net/V4SVt/336/