GATE-MST

joke api script

Jun 30th, 2023
1,206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.33 KB | Source Code | 0 0
  1. // joke api
  2. $("#joke").click(function () {
  3.     console.log("testing joke api");
  4.     var joke_url = "https://official-joke-api.appspot.com/random_joke";
  5.     $.getJSON(joke_url, function (data) {
  6.         $("#exampleModalLabel").text(data.setup);
  7.         $("#punchline").text(data.punchline);
  8.         console.log(data);
  9.     });
  10. });
Tags: api jQuery
Advertisement
Add Comment
Please, Sign In to add comment
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy