jQuery(window).load(function () {
jQuery('body').find('#td_uid_1_6007db359c7de .td-element-style').each(function (index, element) {
jQuery(element).css('opacity', 1);
return;
});
});
jQuery(window).ready(function () {
// We need timeout because the content must be rendered and interpreted on client
setTimeout(function () {
var $content = jQuery('body').find('#tdc-live-iframe'),
refWindow = undefined;
if ($content.length) {
$content = $content.contents();
refWindow = document.getElementById('tdc-live-iframe').contentWindow || document.getElementById('tdc-live-iframe').contentDocument;
} else {
$content = jQuery('body');
refWindow = window;
}
$content.find('#td_uid_1_6007db359c7de .td-element-style').each(function (index, element) {
jQuery(element).css('opacity', 1);
return;
});
});
}, 200);