Click the navigation bar title (titleClick
) to trigger callback.
Use titleClick interface
document.addEventListener('titleClick', function(e) {
alert('title clicked')
}, false);
Code sample
The following code sample demonstrates the basic functions:
<h1>Please click the title to see effect </h1>
<script>
document.addEventListener('titleClick', function(e) {
alert('title clicked')
}, false);
</script>