agregué a la tabla usando .append en jquery y necesito agregar la última columna con sus celdas
O necesito agregar enlaces en la columna "Enlace de archivos PDF"
<table class="table"> <thead> <tr> <th scope="col">thumbnails</th> <th scope="col">Title</th> <th scope="col">authr</th> <th scope="col">PDF Files link</th> </tr> </thead> <tbody id="employee_table"> </tr> </tbody> </table>y este es mi codigo jquery
var videode='<tr><td><div class="video vidEle" style="width:42%;height:108px;" data-id="'+vid_id+'" ><a href="#top"><img class="v-img" style="width:79%;height:92px;" src="'+vid_thumb+'"/><i class="play-btn fa fa-play" style"top:72% !important"></i></a></div></td><td><div class=""data-id="'+vid_id+'" ><a href="#top"><div class="v-title">'+vid_title+'</div></a></div></td><td><p>'+channelTitle+'</p></td></tr>' $('#employee_table').append(videode);finalmente necesita agregar enlaces en la columna "Enlace de archivos PDF"