Created
May 5, 2021 11:27
-
-
Save rohankhudedev/ac3e2171d63eb07dd2b41d39cae9b329 to your computer and use it in GitHub Desktop.
Delete All Mails from Rediffmail Inbox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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