Horje
How to load website url without displaying

Here is simple solution to load a website without showing content in display.

In following code, Just change https url and put your url.


Method - 1

See the Example.

index.html
Example: HTML
<script>
 var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
  // check the response status/state
  if (this.readyState == 4 && this.status == 200) {
    //Create a response action here
  }
};
// create a request
xhttp.open("GET", "https://horje.com", true);
xhttp.send();
</script>




js solution

Related Articles
How to load website url without displaying Javascript Link Tutorial
How to create a link in Javascript Javascript Link Tutorial
How to scroll auto on Specfic Element Javascript Link Tutorial


Read Full:
Javascript Link Tutorial
Type:
Develop
Category:
Web Tutorial
Sub Category:
Javascript Link Tutorial
Uploaded by:
Admin
Views:
88