ASP.NET Timer Control's client side Tick event or jQuery equivalent
I am looking for client-side Tick event of ASP.NET Timer control or jQuery equivalent timer plugin. Your suggestion is much开发者_开发知识库 appreciated. Thanks
I found a temporary solution for this but I am not sure whether this is a good way or not. Please let me know if you have any suggestion. Thanks !
function pageLoad(){
var timer = $find('<%= Timer1.ClientID %>');
timer._doPostback = function(){
// Do something in client side before postback
__doPostBack(this.get_uniqueID(),'');
};
}
You can use this pluıgins with ASP.NET. But i'm not sure with Timer Control.
Timer-X - Absolute Control
jCountdown Timer
jQuery fjTimer
精彩评论