JavaScript Reference/Javascript Methods/clearRequest

Материал из Web эксперт
Версия от 11:22, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"clearRequest()" Example

   <source lang="javascript">
   

<html> <head> <script language="JavaScript">

   function function1() {
       navigator.userProfile.clearRequest();
   }

</script> </head> <body> <button onclick="function1();">Clear the read-requests queue</button> </body> </html>


     </source>
   
  


"clearRequest()" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |userProfile | +----------------+--------------------------------------------------------------+

     </source>
   
  


"clearRequest()" Syntax, Parameters and Note

   <source lang="javascript">

Note: Clears the read-requests queue from the userProfile object.

Syntax:

navigator.userProfile.clearRequest() window.clientInformation.userProfile.clearRequest()


     </source>