VisualBean
12/14/2015 - 2:28 PM

removeTryItOutButton.js

$(function () {

    function removeButtons(buttons) {
        [].forEach.call(buttons, function (btn) {
            btn.remove();
        });
    }

    var putbuttons = document.querySelectorAll(".put .submit");
    removeButtons(putbuttons);

    var postbuttons = document.querySelectorAll(".post .submit");
    removeButtons(postbuttons);

});