document.querySelectorAll( 'oembed[url]' ).forEach( element => { const anchor = document.createElement( 'a' ); anchor.setAttribute( 'href', element.getAttribute( 'url' ) ); anchor.className = 'embedly-card'; element.appendChild( anchor ); } ); document.querySelectorAll( 'div[data-oembed-url]' ).forEach( element => { // Discard the static media preview from the database (empty the
). while ( element.firstChild ) { element.removeChild( element.firstChild ); } // Create the element that Embedly uses // to discover the media. const anchor = document.createElement( 'a' ); anchor.setAttribute( 'href', element.dataset.oembedUrl ); anchor.className = 'embedly-card'; element.appendChild( anchor ); } ); function showLoading(){ $('#LoadingAnimation').modal('show'); } function hideLoading(){ $('#LoadingAnimation').modal('hide'); } -->