Hide button using javascript

how to hide using javascript.
how to hide the download button using javascript.


this link might help you if that is what you are trying to know. ,

just simply add nodownload in controlist.that’s it!!

<tagname width="512" height="380" controls controlsList="nodownload">
    <source data-src="mov_bbb.ogg" >
</tagname>

Hi @szaveri99,

You can hide any HTML element using Javascript. You have to set the display property at none in Javascript.

<button type="button" onclick='hideme()' id="demo">Click Me to hide!</button>

<script>
// function to hide button
function hideme(){
      document.getElementById("demo").style.display="none";
}
</script>

If you want to hide the download button on the Graph page then use the code below:

dataDownload(false)

@rahul.singh1 Thankyou, it really helped!