10 lines
177 B
JavaScript
10 lines
177 B
JavaScript
|
|
function addItem(clickedButton)
|
||
|
|
{
|
||
|
|
$(clickedButton).parent().parent().after(itemRow);
|
||
|
|
}
|
||
|
|
|
||
|
|
function delItem(clickedButton)
|
||
|
|
{
|
||
|
|
$(clickedButton).parent().parent().remove();
|
||
|
|
}
|