I want to hide download button of "multimedia" macro confluence. Can anyone please help me ??? Thanks in advance .
i have solved myself by adding below code in macro
jQuery( document ).ready(function() {
jQuery("video").each(function(){
jQuery(this).attr('controlsList','nodownload');
jQuery(this).load();
});
});
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.