I am using WordPress and using jQuery fancyBox for display YouTube videos but I am getting this error:
XMLHttpRequest cannot load http://www.youtube.com/embed/L9szn1QQfas?autoplay=1. Origin http://localhost is not allowed by Access-Control-Allow-Origin.
I have added bellow jQuery code
in footer.php
$(document).ready(function() {
$(".fancybox").fancybox();
});
and added bellow html code inside my post.
<a class="fancybox fancybox.iframe" href="http://www.youtube.com/embed/L9szn1QQfas?autoplay=1">
<img class="alignleft size-thumbnail wp-image-583" alt="small-screen-youtube" src="http://localhost/example/wp-content/uploads/2013/10/small-screen-youtube-150x150.png" width="150" height="150" />
</a>
This problem is killing me :(
Any ideas or suggestions? Thanks.