[jQuery] jQuery and Vimeo
I was just looking into the Vimeo api decided I wanted to implement
some of their videos on my site. I have done the following and keep
getting a parse error. Does anyone know what I am doing wrong? Thanks
for the help.
$(document).ready(function() {
$.getJSON( "http://www.vimeo.com/api/oembed.json?url=http%3A//
www.vimeo.com/1441383&jsoncallback=?",
function(data) {
$("body").append(data);
}
);
});
</script>