Skip to main content

Hide the Upload Multiple links in the upload.aspx page

Hide the Upload Multiple links in the upload.aspx page

this is one of the easiest way to hide this from the script


<script type="text/javascript" >
if(document.location.href.match("Upload.aspx") =="Upload.aspx")
{
var hlink= document.getElementsByTagName("a");
for(var i=0;i<hlink.length;i++)
{
if(hlink[i].id.match("UploadMultipleLink") =="UploadMultipleLink")
{
hlink[i].style.display="none";
}
}

}
</script>



Comments

  1. where to add above code in _layouts/upload.aspx or SPD Upload.aspx

    ReplyDelete

Post a Comment