4 lines
105 B
JavaScript
4 lines
105 B
JavaScript
|
$("button.del").click(function(event){
|
||
|
var txt=$(this).data('txt');
|
||
|
$('#tr_' + txt).hide('1300');
|
||
|
})
|