I am trying to add a click event to one of the element which is nested inside of a iframe
of iframe
.
this is a iframe .ssueContentIframe
under this, there is another iframe
added as #SmartReportTabContent1
so inside of the second iframe element, I am trying to add a click event like this:
Basically, I don't know when both of iframe
will be loaded and all elements will available, for future I am adding:
$('.ssueContentIframe').contents().find( '#SmartReportTabContent1' ).find('.ui-grid-selection-row-header-buttons.ui-grid-icon-ok.ui-grid-row-selected').on('click', function(){
alert('Hi');
});
But not working. what is the correct way to wait until both of iframe
exist and add the click event to one of the element here?
Thanks in advance!