Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
    <button id="button">click</button>
    <div id="joke"></div>
    
    <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.15.3/axios.min.js"></script>
</body>
</html>
 
const button = document.getElementById('button');
const joke = document.getElementById('joke');
button.addEventListener('click', fetchJoke);
function fetchJoke() {
    button.disabled = true;
    
    setTimeout(() => {
        return axios
            .get('https://api.icndb.com/jokes/random/')
            .then(renderJoke)
            .catch(renderErrorMessage)
    }, 1000);
}
function renderJoke(res) {
    joke.innerHTML = res.data.value.joke;
    button.disabled = false;
}
function renderErrorMessage(err) {
    joke.innerHTML = err.message;
    button.disabled = false;
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
dagmanpro
0viewers