Mega Code Archive

 
Categories / JavaScript Reference / Javascript Methods
 

Urns() Example

<html> <body> <script language="JavaScript"> function function1() {     var m = document.all.urns("clientCaps");     if (m) {         alert('YES');     } else {         alert("NO");     }  }  </script> <input type="button"         value="Is there any 'clientCaps'         behavior attached to this page?"         onClick="function1();"> </body> </html>