HTML CSS Reference/HTML Attributes Reference/application

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

"application" Example

    
<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>



application is applied to

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



"application" Syntax and Note

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>