Is it some how possible to send a get request from a https website to a http address with fetch API.
fetch('http://103.82.8.194/Data/', { mode: 'no-cors' })
.then(response => response.json())
.then(data =>
console.log(data)
);
Like is it some how possible send this request from https://rionislam.github.io ?