0

How to download a file from a url with Javascript?

I'm trying to get from a textfield a user enters a url as follows:

new Ext.form.TextField({
                disabled: false,
                        fieldLabel: "file",
                        value:'',
            id:"url"};

and I need the value of this variable is the file contained in the above url I am trying as follows:

var file1 = new OpenLayers.WPS.ComplexPut({
                      identifier: "file1",
                      value: window.location.href = document.getElementById("url")
Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
Ricardo Rod
  • 8,453
  • 9
  • 27
  • 39

2 Answers2

1

is this done in a browser? If so, you could use Ajax to download plain text or XML. Save yourself a lot of trouble and learn jQuery first, and it'll be quite easy.

geon
  • 8,128
  • 3
  • 34
  • 41
1

You can use jQuery to load anything from an URL quite easily with:

<script>
   $("#loadhere").load("http://www.google.com");
</script>
elasticrat
  • 7,060
  • 5
  • 36
  • 36