We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bd87ae commit d439b88Copy full SHA for d439b88
README.md
@@ -231,13 +231,14 @@ request.errback { |response|
231
puts "failed with status #{response.status_code}"
232
}
233
```
234
-### HTTP
235
236
-The `HTTP` class wraps jQuery's ajax request into a ruby class.
+#### Other options
+
237
+`HTTP` accepts the usual `$.ajax` options:
238
239
```ruby
-HTTP.get("/users/1.json") do |response|
240
- puts "Got response!"
+HTTP.get '/search', data: {q: 'foo'}, async: false do |response|
241
+ p response.body
242
end
243
244
0 commit comments