name
このコードを div id にバインドし、入力のid
パラメーターを渡すだけでよい関数にするにはどうすればよいですか?
var startingNo = 3;
var $node = "";
for(varCount=0;varCount<=startingNo;varCount++){
var displayCount = varCount+1;
$node += '<p><input type="text" name="duties'+displayCount+'" id="duties'+displayCount+'"><span class="removeVar">Remove Variable</span></p>';
}
//add them to the DOM
$('#duties').prepend($node);
//remove a textfield
$('#duties').on('click', '.removeVar', function(){
$(this).parent().remove();
varCount--;
});
//add a new node
$('#addVar').on('click', function(){
varCount++;
$node = '<p><input type="text" name="duties'+varCount+'" id="duties'+varCount+'"><span class="removeVar">Remove Variable</span></p>';
$(this).parent().before($node);
});