Re: AJAX uploader - hiding in JS or Jquery

  •  07-17-2011, 8:36 AM

    Re: AJAX uploader - hiding in JS or Jquery

    Hi mchamo,
     
    Your method is good.
    Also, you can use the following javascript code to hide and show the control 
     
    1. function Uploader_Hide()  
    2. {  
    3.     var uploader = document.getElementById('<%= Uploader1.ClientID%>');  
    4.     uploader.style.display = "none";  
    5. }  
    6.   
    7. function Uploader_Show()  
    8. {  
    9.     var uploader = document.getElementById('<%= Uploader1.ClientID%>');  
    10.     uploader.style.display = "";  
    11. }  
     Hope it helps.
     
     
    Regards,
    Jeff 
View Complete Thread