I need to translate a piece of application to pure Javascript (without Jquery) and I'm stuck in this piece of code:
window.parent.$("#iframeMain").fadeOut(function(){
window.parent.$("#iframeSecondary").fadeIn().contents().find(".div").html(divContent);
});
Any idea how to do this with pure Javascript?
Thanks!