I would like to append my div with first permalink from subreddit. I've tried following jQuery's documentation, Smashing Magazine's article and reddit's github but without any effect. Please help me understand how to do this.
Jquery:
$(document).ready(function(){
$.getJSON("api.reddit.com/r/aww/.json", function(json){
$(".slodziaki").append("<p>Permalink</p>"+ json.data.children.data[0].permalink)'
});
});
HTML:
<html>
<head>
<meta charset="utf-8">
<title>Słodziaki.</title>
<script>
</script>
</head>
<body>
<div class="slodziaki">
Reddit api test.
</div>
</body>
</html>
jsFiddle: http://jsfiddle.net/AdVS3/2/