79390539

Date: 2025-01-27 11:21:18
Score: 1.5
Natty:
Report link

What you should try is to remove onClick and trigger postback manually with __doPostback. use this link as a guide:

__doPostBack function - CodeProject

function startTimer(e) {
    e.preventDefault();
    startMinutes = 1; 
    time = startMinutes * 60;
    btnSubmit.prop('disabled', true);
    btnSubmit.val('Resend');
    timerElement.style.display = 'block';
    if (!interval) {
        interval = setInterval(updateTimerCountdown, 1000);
    }
    __doPostack('btnSubmit', '');
    return true; 
}
Reasons:
  • Blacklisted phrase (1): this link
  • Has code block (-0.5):
  • Starts with a question (0.5): What you
  • Low reputation (0.5):
Posted by: Pvria Ansari