Write lots of beschimpfung

using alert_bad to beschimpf

by nikita_turing

HTML

<!--<input type="button" id="myBtn" value="Curse!" />-->
<div id="ausgabe"></div>

JavaScript

function alert_bad(s){
        
         $.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);
             $('#ausgabe').append("<p>"+s+badword+" !"+"</p>");
        });
    }
    

$('#myBtn').on('click',function(){
alert_bad('An die Arbeit du ');
});

setInterval(function(){alert_bad('An die Arbeit du ');},500);