Outputs Client IP in JSON (Requires PHP server)
@@ -0,0 +1,4 @@
+<?php
+$ip = $_SERVER['REMOTE_ADDR'];
+echo "getIP({\"ip\":\"$ip\"});";
+?>