$("#randomphoto_button").click( function() { $.getJSON("https://www.moje-musicale.pl/e4u.php/1,ModAjax/getRandomImageJSON", function(data){ $("#random-photo-url").attr('href',data.url); $("#random-photo-img").attr('src',data.img); $("#random-photo-img").attr('title',data.title); $("#random-photo-img").attr('alt',data.title); $("#random-photo-url").attr('title',data.title); $("#random-photo-img").css('border','1px solid #333333'); if (data.width > 0) { $("#random-photo-img").attr('width',data.width); }; if (data.height > 0) { $("#random-photo-img").attr('height',data.height); }; }); });