JavaScript Reference/Javascript Properties/profile

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

"profile" Example

   <source lang="javascript">
   

<html> <head id="myHeader"> <script language="JavaScript"> function function1() {

  alert("The following profile has been added:\n"http://www.wbex.ru"");
  document.all.myHeader.profile = "http://www.wbex.ru"; 

} </script> </head> <body> <input type="button" value="Add profile" onClick="function1();"> </body> </html>


     </source>
   
  


"profile" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |<head> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"profile" Syntax and Note

   <source lang="javascript">

Note: Read and write property. Specifies the location (the Uniform Resource Identifier, or URI) of a <meta> data profile.

Syntax:

document.getElementById("headID").profile = value document.all.headID.profile = value // IE only


     </source>