I am trying to use WolframAlpha's API through Javascript. I don't understand why the following code returns me an empty alert. I'm new at jQuery, but I was told it was the best method to use right here.
<html>
  <head>
    <script src="jquery-2.1.1.min.js"></script>
  </head>
    <body>
        <script>
        $.get('http://api.wolframalpha.com/v2/query?appid=77P9PL-2QAWEY86WV&input=2x&format=image,plaintext', function(responseText) {
        alert(responseText);
        });
        </script>
    </body>
</html>
Thank you very much for your help