You need to use the event delegation syntax of .on() here. Change:
$("#add").click(function() {
to
$("#buildyourform").on('click', '#add', function () {
jsFiddle example
You need to use the event delegation syntax of .on() here. Change:
$("#add").click(function() {
to
$("#buildyourform").on('click', '#add', function () {
jsFiddle example