折りたたみ可能なセットの 1 つの要素でクリックをバインドする方法は?
<div data-role="content">
<div data-role="collapsible-set" data-theme="d" data-content-theme="d">
<div data-role="collapsible" id="expand">
<h3>header</h3>
</div>
</div>
</div>
これを試して:
$(document).on('click', '#expand', function (e) {
e.stopImmediatePropagation();
e.preventDefault();
console.log('ekb'); // my stuff
});