JSFiddle - React, Tailwind, and code Playground
by Dedi Wibisono
HTML
<div id="lala">
</div>
JavaScript
const settings = {
async: true,
crossDomain: true,
url: 'https://mobile-phone-specs-database.p.rapidapi.com/gsm/get-image-by-id/Z2RjOG80Smk2WVV2R0wwR1F1RjRNZG5TR1ZqUUZuU1JhU1pNT0FjNG94UT0=',
method: 'GET',
headers: {
'X-RapidAPI-Key': 'b66eb3153bmsh1d00af693516ac2p106275jsn0b6d5b9e5b20',
'X-RapidAPI-Host': 'mobile-phone-specs-database.p.rapidapi.com'
}
};
$.ajax(settings).done(function (response) {
//console.log(response);
$("#lala").append(`
<img src="${response}" alt="" title="" />
`)
});