'addReadRequest()' Example : userProfile « Javascript Objects « JavaScript DHTML






'addReadRequest()' Example

 <html> <head> <script language="JavaScript"> function function1() { navigator.userProfile.addReadRequest("Business.phone"); var m = navigator.userProfile.addReadRequest("Business.phone"); alert(m); } </script></head> <body> <button onclick="function1();">Add an entry to read request</button> </body> </html> 








Related examples in the same category

1.'doReadRequest()' Example
2.add Read Request
3.Clear Request
close