jQuery(document).ready(function() { var link = document.createElement('link'); link.href = lw_config.urlIframe; link.rel = 'prefetch'; document.head.appendChild(link); jQuery('.dropbtn').click(function() { var jQueryparent = jQuery(this).parent(); jQueryparent.find('.text-inline').css('opacity', 0); if (!jQuery('.container-block-login .container-iframe').hasClass('opened')) { jQuery('.container-block-login .container-iframe').addClass('opened'); jQuery('.container-block-login .container-iframe').html(''); jQuery(".text-inline").fadeOut() }; }); jQuery('.container-block-login').click(function() { // Para mostrar el menu en mobile if (jQuery(window).width() <= 768) { jQuery('.container-block-login').css('height', 'initial'); jQuery('.container-block-login .sub-menu-login').css('position', 'initial'); } }); });