2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9 @group Polymer Core Elements
11 The `core-ajax` element exposes `XMLHttpRequest` functionality.
15 url="http://gdata.youtube.com/feeds/api/videos/"
16 params='{"alt":"json", "q":"chrome"}'
18 on-core-response="{{handleResponse}}"></core-ajax>
20 With `auto` set to `true`, the element performs a request whenever
21 its `url`, `params` or `body` properties are changed.
23 Note: The `params` attribute must be double quoted JSON.
25 You can trigger a request explicitly by calling `go` on the
31 --><html><head><link rel=
"import" href=
"core-xhr.html">
32 </head><body><polymer-element name=
"core-ajax" hidden=
"" attributes=
"url handleAs auto params response error method headers body contentType withCredentials progress loading" assetpath=
"">
35 <script charset=
"utf-8" src=
"core-ajax-extracted.js"></script></body></html>