Here i have a html code where i have input textbox planted in a row. How can i use the '+' button in the same table while using ONLY parent() function to create a new row within the table that contains another input textbox?
i have some sample jquery code here but they dont really work:
$(".plus").live("click", function(){
var parent = $(this).parent().parent().parent(".iteration");
parent.after('<table width="100%" border="0" bordercolor="#000000"><tr><td colspan="2"><label><input type="text" value="Create a task for this iteration" size="75%" height="25px"/></label></td></tr></table>');
var nbinput = parent.find("input[type='text']").length;
if(nbinput == 5)
parent.find(".plus").attr("disabled","disabled");
else if(nbinput == 2)
parent.find(".moins").attr("disabled","");
});
$(".moins").live("click", function(){
var parent = $(this).parent().parent().parent(".iteration");
parent.children("input").last().remove();
var nbinput = parent.find("input[type='text']").length;
if(nbinput == 4)
parent.find(".plus").attr("disabled","");
else if(nbinput == 1)
parent.find(".moins").attr("disabled","disabled");
});