JSFiddle - React, Tailwind, and code Playground
by nikita_turing
HTML
<input type="button" id="myBtn" value="Curse!" />
JavaScript
function alert_bad(){
$.getJSON( "http://pipes.yahoo.com/pipes/pipe.run?_id=984f353e52cabe39366da8d0cae887ca&_render=json", function( json ) {
var count_words = json.count;
var r_numer = Math.floor((Math.random() *count_words) +1);
var badword = json.value.items[r_numer].content;
// alert(badword+ ' ('+r_numer+'/'+count_words+')');
alert(badword);
});
}
$('#myBtn').on('click',function(){
alert_bad();
});