Posts by Davison • 17 points
2 posts
-
-1
votes3
answers139
viewsQ: Best way to write a Javascript function
What is the best way to write the following function? This? function DOMtoString(document_root) { var html = '', node = document_root.firstChild; while (node) { switch (node.nodeType) { case…
-
0
votes0
answers110
viewsQ: Problem to establish a connection between Client.exe and Server.exe using No-ip service
I have a remote access app and needed to receive connections from my customers using the service No-ip (no-ip.com), in view of the fact that ip external is always dynamic. So I have already made all…