Search
 
SCRIPT & CODE EXAMPLE
 

HTML

embed html

<!-- For an embed you use the iframe tag, which is a closed tag -->

<iframe></iframe>

<!-- and then for attaching websites or cloud videos, audios etc you use the src attribute -->

<iframe src="https://mywebsite.com"></iframe>
Comment

embed tag in html

<!-- embed tag in html -->
<!-- The <embed> tag defines a container for an external resource, 
such as a web page, a picture, a media player, 
or a plug-in application. -->

<!-- An embedded image: -->

<embed type="image/jpg" src="pic_trulli.jpg" width="300" height="200">

<!-- An embedded HTML page: -->

<embed type="text/html" src="snippet.html" width="500" height="200">

<!-- An embedded video: -->

<embed type="video/webm" src="video.mp4" width="400" height="300">
Comment

embed html

function HTMLImporter() {}

HTMLImporter.import = function (url) {
  var error, http_request, load, script;

  script =
    document.currentScript || document.scripts[document.scripts.length - 1];

  load = function (event) {
    var attribute, index, index1, new_script, old_script, scripts, wrapper;

    wrapper = document.createElement("div");
    wrapper.innerHTML = this.responseText;

    scripts = wrapper.getElementsByTagName("SCRIPT");

    for (index = scripts.length - 1; index > -1; --index) {
      old_script = scripts[index];

      new_script = document.createElement("script");
      new_script.innerHTML = old_script.innerHTML;

      for (index1 = old_script.attributes.length - 1; index1 > -1; --index1) {
        attribute = old_script.attributes[index1];
        new_script.setAttribute(attribute.name, attribute.value);
      }

      old_script.parentNode.replaceChild(new_script, old_script);
    }

    while (wrapper.firstChild) {
      script.parentNode.insertBefore(
        wrapper.removeChild(wrapper.firstChild),
        script
      );
    }

    script.parentNode.removeChild(script);

    this.removeEventListener("error", error);
    this.removeEventListener("load", load);
  };

  error = function (event) {
    this.removeEventListener("error", error);
    this.removeEventListener("load", load);

    alert("there was an error!");
  };

  http_request = new XMLHttpRequest();
  http_request.addEventListener("error", error);
  http_request.addEventListener("load", load);
  http_request.open("GET", url);
  http_request.send();
};
Comment

PREVIOUS NEXT
Code Example
Html :: how to change text color using only html 
Html :: html select default value disabled 
Html :: html scrollable table vertical 
Html :: how to add js to html 
Html :: como añadir bootstrap a html 
Html :: html shortcuts 
Html :: email button html 
Html :: links html 
Html :: HTML Image Maps 
Html :: tailwind css header 
Html :: show spinner during API request pure html and jquery 
Html :: getmdl 
Html :: multiple forms in the same line html 
Html :: image cut by div border 
Html :: video html player 
Html :: html figure 
Html :: rounded pill bootstrap 5 
Html :: angular open pdf in new tab 
Html :: html scale svg 
Html :: amp-img example 
Html :: nuclear bomb 
Html :: multiline input 
Html :: google icons 
Html :: html to xml 
Html :: del tag html 
Html :: enable html button 
Html :: simple html report template 
Html :: ionic phone url 
Html :: socket io script 
Html :: transform bounce css 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =