ESV API with jQuery

HTML

<input type="button" value="get data" id="btn" >

JavaScript

$("#btn").click(function() {
    reference='Jhon+1'
    $.getJSON('http://www.ulasdikme.com/file.json',
        function(text){
            if(text){
                $('body').html(text.content);
            } else {
                $('body').html('Error');
            }
        });
});