Skip to content

Instantly share code, notes, and snippets.

View manmeetsingh7781's full-sized avatar
🏠
Working from home

Manmeet Singh manmeetsingh7781

🏠
Working from home
View GitHub Profile
<div id="new-quote"></div>
<script>
var body = document.getElementById("new-quote")
var url = "https://site-manmeetsingh7781.c9users.io/api/endpoint"
var xml = new XMLHttpRequest();
xml.onreadystatechange = function(){
if(xml.readyState === 4 && xml.status === 200){
var data = JSON.parse(xml.responseText);
function rand(){
var random = Math.floor(Math.random() * data.length);