Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to disabled/enabled asp.net timer control using Javascript My code is: (but not working)

 function timeroff() 
 {
      var b = document.getElementById('Timer1');
      if (b) {
            b.disabled = true;
        }
    }
    function timeron() {
        var b = document.getElementById('Timer1');
        if (b) {
            b.disabled = false;
        }
    }
share|improve this question
following link is redirect to somewhere else now :))) – Amit Patel Dec 23 '11 at 9:33

1 Answer

up vote 2 down vote accepted

I hop this blog helps you....

http://mattberseth.com/blog/2008/05/bug_bash_enablingdisabling_the.html

share|improve this answer
1  
Hey, I am not getting methods like this.get_enabled(),this._stopTimer(), this._startTimer()? – Amit Patel Sep 26 '11 at 7:23
which methods??? – sikender Sep 26 '11 at 7:24
as you describe......in example – Amit Patel Sep 26 '11 at 7:26
get_enabled(),_stopTimer(),_stratTimer() – Amit Patel Sep 26 '11 at 7:26
Do you follow this blog properly? Check it again..in your code.. – sikender Sep 26 '11 at 7:29
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.