I want to open an ftp browser on a client site so that it can upload files to ftp. I use the window.open() method to open ftp in a child window.
var windowObjectReference = window.open("ftp://" + username + ":" + password + "@" + server, _blank', toolbar=yes, location=yes, status=yes, scrollbars=auto, copyhistory=no, menubar=yes, width= 500px, height=500px, left=300px), top=100px, resizable=yes' );
ftp looks like this:
[1]: http://i.stack.imgur.com/T6WYg.jpg
Now I want to track user activity, for example, directories that he visited, and send the path to the jsp page, how to do it ... ??
monu dwivedi
source share