HTML DOM Embed ਆਪਣ
- پچھلے صفحے <em>
- آئندہ صفحہ <fieldset>
Embed object
Embed object is a new object in HTML5.
Embed object represents the HTML <embed> element.
Access Embed object
You can access <embed> elements by using getElementById():
var x = document.getElementById("myEmbed");
Create Embed object
You can create <embed> elements by using the document.createElement() method:
var x = document.createElement("EMBED");
Embed object properties
خصوصیات | description |
---|---|
height | set or return the value of the height attribute of the embed element. |
src | set or return the value of the src attribute of the embed element. |
type | set or return the value of the type attribute of the embed element. |
width | embed علامت میں width خاصیت کی قیمتی تعین یا واپسی کا کام کرتا ہے۔ |
- پچھلے صفحے <em>
- آئندہ صفحہ <fieldset>