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")

2 Answers 2

1

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

<script>
   $("#loadhere").load("http://www.google.com");
</script>
Sign up to request clarification or add additional context in comments.

1 Comment

Please What does the '#loadhere' represent ?
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.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.