![]() |
Here is simple solution to load a website without showing content in display. In following code, Just change https url and put your url. |
See the Example.
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 |
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 |