Update:
The first post was completely wrong, however it seems to work to click on an object tag
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script> <script> $(document).on('click', 'object', function(event) { console.log("jquery test handler");}); </script> <object width="400" height="400">Object</object>
The important part is $(document)
Update 2: More Important Issue Code Using Trigger and Custom Event
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script> <object>Object</object> <script> $(document).on('test', 'object', function(event) { console.log("jquery test handler");}); $('object').trigger('test'); </script>
source share