Hi, I am integrating some twitter bootstrap<http://twitter.github.com/bootstrap/base-css.html#icons> icons into my pyjs application. The icons must be placed inside <i> tags, like this:
<i class="icon-tag"></i> I am doing this by deriving an object from the HTML object, and setting directly the html. Some of this icons must be active. For example, I want to use the "icon-remove-sign" to trigger a delete operation in my database (via JSONRPC). How can I attach a onClick handler to the HTML object? Thanks, Daniel