HTML CSS Reference/HTML Attributes Reference/application

Материал из Web эксперт
Перейти к: навигация, поиск

"application" Example

   <source lang="html4strict">
   

<HTML> <Title>Example For application</Title> <BODY> <iframe application="yes"

       src="yourpage.html" 
       style="width:40%;">

</iframe> <iframe application="no" src="http://www.wbex.ru" style="width: 40%;"> </iframe> </BODY> </HTML>


     </source>
   
  


application is applied to

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Applied_To |<frame> <iframe> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"application" Syntax and Note

   <source lang="html4strict">

Note:

This attribute indicates whether or not the element points to an HTA application. It is a Boolean attribute, taking the values yes and no. No is the default value. If true, would exempt it from the browser security model.

Syntax:

<element application="value"> . . . </element>


     </source>