What is the equivalent of file_get_contents ($ url) in JavaScript or TypeScript?
Viewed 4189 times since Sun, Oct 18, 2020
Use Ajax $.ajax({ type: "GET", url: "http://www.flalottery.com/exptkt/ff.html" }).done(function(data){ console.log(data); }); Or use a simple get request $.get("http://www.flalottery.com/exptkt/ff.html", function(data) { console.log...
Read More