a7dc
a7dc

Reputation: 3426

How can you pull data from an API to be used in Opera Mini?

Opera Mini has no support for the request api, what are the alternative ways of requesting a response from APIs?

Upvotes: 0

Views: 131

Answers (1)

McKabue
McKabue

Reputation: 2232

Use XMLHttpRequest. There are various libraries that aim to simplify working with AJAX but you can also use it without any library.

axios

jQuery.ajax()

Upvotes: 1

Related Questions