and other issue is i hav created 2 dropdownlist side by side in a row with one add more button image ...i want to add number of times same row of dropdown list with minus button image to remove each row when it is no more useful..on each button click ..plz send me the clear code snippet ASAP
c#,ASP form designing
hii...i have created a sign in form...where put a textbox with a add more button image in a single row..when we clicked on button i need to create text box side by minus image button to remove thattextbox...in that way i hav to add 5 textboxes in each row on button click..
Sukesh MarlaPosted Aug 24, 2012, 11:56 AM
jyothsna chinnaPosted Aug 24, 2012, 3:11 AM
Sukesh MarlaPosted Aug 23, 2012, 2:38 PM
textbox
then on add button click
if( $(this) .attr('value')=="+")
{
var ObjPriClone=$(this).parents('.TRTobeCopied:first').clone();
$(this).parents('.TRTobeCopied:first ').find(' Btn').value("-");
$('. Contianer').append( ObjPriClone);
}
else
{
$(this).parents('.TRTobeCopied:first') .remove();
}
Check this is correct answer if it helped.