3 lines
55 B
JavaScript
3 lines
55 B
JavaScript
|
function removeDiv(divId) {
|
||
|
$("#"+divId).remove();
|
||
|
}
|