How to make unclickable element

An example showing how to how to make unclickable element using Tizen 2.3.
<style>
.unclickable {
    -webkit-pointer-events: none;
    pointer-events: none;
}
</style>
<p class="unclickable">Unclickable</p>

Responses

0 Replies