Skip to content

Instantly share code, notes, and snippets.

@rohankhudedev
Created May 5, 2021 11:27
Show Gist options
  • Save rohankhudedev/ac3e2171d63eb07dd2b41d39cae9b329 to your computer and use it in GitHub Desktop.
Save rohankhudedev/ac3e2171d63eb07dd2b41d39cae9b329 to your computer and use it in GitHub Desktop.
Delete All Mails from Rediffmail Inbox
// Simple steps to execute this
// 1. Login to rediffmail
// 2. Goto Inbox
// 3. Copy Below code and paste in console
```
function deleteAllMailsFromRediffMailInbox()
{
$('.rd_mail_sel_all').click();
$('.rd_fil_del').click();
$('#jqi_state0_buttonOk').click();
}
setTimeout(deleteAllMailsFromRediffMailInbox, 8000);
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment