Skip to main content

All Questions

Tagged with
0 votes
2 answers
123 views

Did discord change the "bulkDelete" variable in java script?

module.exports = { name: 'clear', description: 'clear certain amount of messages', async execute(message, args){ if(!args[0]) return message.reply("please enter the amount of ...
Dale's user avatar
  • 3
0 votes
1 answer
426 views

Why is not bulkDelete working in discord.js?

I tried to make a bulk delete command to my discord bot, but it doesn't work. const args = message.content.slice(prefix.length).trim().split(/ +/g); if(args[1] == 'bulkdelete') { const deleteCount =...
Elias Wennerlund's user avatar
0 votes
1 answer
476 views

How to create a bulk delete button with Javascript and AJAX

i'm developing a new web site and i want to find out a way to add a bulk delete option. Inside the web site I have a table that show information about schedule tasks that a user create. The table ...
Nikos Kalantas's user avatar