Mark item with class
<div class="editable notoolbar"></div>
Use event:
Aloha.ready(function () { var $ = Aloha.jQuery; Aloha.bind('aloha-editable-activated', function () { if ($(Aloha.activeEditable.obj[0]).hasClass("notoolbar")) { $(".aloha-toolbar").hide(); } }); });
source share