I am trying to access data using getJSON function of jquery but not able to succeed.
This is my js file:
$(document).ready(function(){
$("button").click(function(){
$.getJSON( "https://www.bitstamp.net/api/eur_usd/", function( data ) {
alert(data);
});
});
});
Can anyone help me in getting this work?
Will really appreciate.