My problem is that when I try to submit a form with jQuery Form plugin (http://jquery.malsup.com/form/), with contentType: script, I get "Save as" pop up on IEs, that tries to save my response script.

Example code: $("#vendor_edit").ajaxForm({dataType: "script"});

response is JavScript, that is properly executed on all the other browsers -- but IE tries to save this file "vendors.js". Any ideas what might force IE to trigger this pop-up?

link|improve this question

0% accept rate
2  
What is the contentType of the response? – Arun P Johny Nov 19 '10 at 8:45
1  
Is this specific to the IE on your machine? If yes, have you checked your browser settings to download instead of open files? Check the Confirm after download option. – Robin Maben Nov 19 '10 at 9:27
feedback

2 Answers

Try using :

$().getScript( url, function(data, textStatus){
    if (typeof(data) === "object"){
        eval(data);  //i.e if you're planning to execute your script
    }
});
link|improve this answer
feedback

Now that was tricky. Response type matters indeed, it needed to be "text/plain" to stop triggering Save As dialog, instead of "application/javascript" for Explorer.

Also, I had to wrap script "textarea" tag, exclusivelly for Explorer to make eval(response) work for some crazy reazon. All other browsers can handle it without texterea wrapper, but IE has a problem with that (I have seen this solution used by Dojo and copied it).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.