Required Elements:$block[boilerplate]
var dontHide = "monthlyCalendar|Test";
<script type="text/javascript">function hideEditButtons() {// true = hide all edit buttons// false = show all edit buttonsvar hideButtons = true;var dontHide = "tblMonthlyCalendarTable|_lblQuote|_pnlNoImages|_pnlImagesExist";// Don't change anything below!// *****************************if (!hideButtons) return;x = document.getElementsByTagName("input"); try { for (j=0; j < x.length; j++) { if( x[j].value == "Edit" && !(x[j].parentNode.innerHTML.match(dontHide)) ) { x[j].style.display = "none"; } } } catch (err) {}}setTimeout("hideEditButtons();", 1);</script>
<script type="text/javascript"> $(function(){ var dontHide = "Calendar|Quotes|Guild Info|Gallery|Random Images"; $('.adminButton,button:contains("Edit")').each(function(){ if (!$(this).closest('.gpWidget').find('.ContentBoxTitle,.ContentBoxTitleNoBackground').text().match(dontHide)) { $(this).remove(); } }) }) </script>