is there a “document” property named ssh? It’s a simple question. I’ve seen this in some code at work, but no one in the office wrote the code, so I’m stucked.
The line was document.ssh.firstPing(…)
firstPing was a method in the code, that is writen in js+php. But I’ve searched with eclipse throughout all the code and there is no ssh anywhere.
There’s no standard
sshproperty on thedocumentobject in the Javascript DOM bindings. If you’re loading Javascript libraries, they could always add one (one can add properties todocumentif one likes). For instance, this is perfectly valid:More on the standard bindings here.