Re: using setTimeout when using prototype
- From: "Nathan White" <changereality@xxxxxxxxx>
- Date: 31 Jan 2006 11:21:48 -0800
processForm=function(inservleturl) {
this.inservleturl = inservleturl;
this.submitForm();
}
processForm.prototype.submitForm2=function() {
}
processForm.prototype.submitForm=function() {
var self = this;
setTimeout(
function(){ self.submitForm2();}
, 20);
}
.
- References:
- using setTimeout when using prototype
- From: James Black
- using setTimeout when using prototype
- Prev by Date: Re: Switch() Statement Not Working
- Next by Date: Re: Pop up window problem with dynamic textboxes and query string
- Previous by thread: using setTimeout when using prototype
- Next by thread: JS for Mozilla
- Index(es):