Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).on('click','#rem-bot-link',function(e){
- e.preventDefault();
- $.ajax({
- type: 'POST',
- url: '/panel/del-link',
- data:{
- linkId: $('.link-button').val()
- },
- success: function(item){
- },
- error: function(error){
- console.log(error);
- }
- })
- });
- router.post('/del-link',(request,response)=>{
- models.db.m_l.destroy({
- where: {id: request.body.linkId}
- })
- .catch(err=>console.log(err));
- response.redirect('/panel/admin');
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement