The 'onBeforeOpen' is the event of panel. You can declare it on any tab panels.
<div class="easyui-tabs" style="width:700px;height:250px">
<div title="About" style="padding:10px">
</div>
<div title="My Documents" style="padding:10px" data-options="
onBeforeOpen: function(){
alert('before open My Documents');
}
">
</div>
<div title="Help" closable="true" style="padding:10px">
</div>
</div>