answersLogoWhite

0

Classid is used to assign a particular object to a given string. For example, if the classid="t", then the letter 't' maybe used to refer to the particular object that was assigned.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What should be the last command in any HTML document?

The last command in any HTML document is a closing HTML tag. Just before it is the closing BODY tag. </BODY> <HTML>


How does hmtl function?

HTML basically tells the computer what to do. it does this by using codes embedded in the <> To start out an HTML command you have to type <HTML> to end an HTML command you have to type the same command as the first, but put a / in front of the command </HTML>. other than that its basically English, if you want to title you page, you type <title>. Example: <HTML> <Title>Basic Webpage</Title> <body> <p> Hello World, this is a basic webpage using HTML </p> </body> </HTML>


What is the HTML command used to insert and display images is the?


What is the command to display HTML page through javascript?

If you're planning on linking to another page, all you have to write is: document.location = "yourNewURL"; If you want to generate Javascript, then you can either use: document.write("your HTML Code"); OR send the HTML code to an existing object in an HTML page, like so: document.getElementById['targetElement'].innerHTML = "your HTML Code here"; ----------------- That's pretty much it. If you want me to elaborate, please let me know. :)


How do you insert a command into a CSS file?

You cannot insert a command into CSS, you can make styles that happen in HTML.


What is HTML object editor?

i dnt knw too


Whose tag used in HTML for image display one by one after few seconds?

This cannot be accomplished with HTML. You may need to use JavaScript to accomplish this effect.


What is the opening and closing tag for bold command in HTML?

<b>example</b>


What tags are used to embed one HTML page inside another HTML page without using frames?

<object type="text/html" data="http://www.example.com" style="width:80%; height:300px; margin:1%;"> embedded html without frames</object>


What is the HTML command getElementsByTagName used for?

The HTML command get Elements By Tag Name is a computer command given to a document asking the computer to search for a given term within the document. For example the Tag Name might be "Robert" therefore the computer will search for the word "Robert" within the document.


List down 3 common tags in HTML what is a command to include a comment in HTML?

3 Tags:To put a comment you put them inside on your page.


What command will put a list of the CGI parameters passed from a HTML form along with there associated values into an array called cgi vars?

To store the CGI parameters passed from an HTML form into an array called cgi_vars, you can use the command my @cgi_vars = $q->param(); in Perl, assuming $q is a CGI object. This command retrieves all the parameter names and their corresponding values, placing them into the cgi_vars array. If you want to capture both names and values as key-value pairs, you might consider using a hash instead.