I am trying to open a network folder by using the following in my extjs javascript project.
window.open("http://127.0.0.1:8887/a/b/");
the above works fine but when there is a space in the path it no longer works
window.open("http://127.0.0.1:8887/a/b c/");
the above does not work. anyone see what I am doing wrong?