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 the <embed> element by using getElementById():
var x = document.getElementById("myEmbed");
Create Embed object
You can create an <embed> element by using the document.createElement() method:
var x = document.createElement("EMBED");
Embed object attributes
বৈশিষ্ট্য | 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>