I got this bit of code from another post pertaining to hiding the cancel button...
- function CuteWebUI_AjaxUploader_OnStart()
- {
- var hidden=this;
- hidden.internalobject.insertBtn.style.display="none";
- hidden.internalobject.cancelBtn.style.visibility="hidden";
- }
What are the other id's for the progress bar, progress text, and any other elements that display within the single file uploader process?
Example: hidden.internalobject.PROGRESSTEXT.style.display = "none"; ??
Thanks