You must have notice that YouTube shows related videos link at the end of playback. This is sometimes quite annoying when you have embedded a video specific to your website and other related videos come up. So in this post, find jQuery code to remove related video shown at the end of playback.
Related Post:
To remove related video, all you need to do is to append "rel=0" to YouTube video URL.
Related Post:
- jQuery code to fetch thumbnail of YouTube video
- jQuery YouTube plugins
- Set YouTube video as background using jQuery
To remove related video, all you need to do is to append "rel=0" to YouTube video URL.
$(document).ready(function () {See result below
$('iframe[src*="youtube.com"]').each(function () {
var sVideoURL = $(this).attr('src');
if (sVideoURL.indexOf('rel=0') == -1) {
$(this).attr('src', sVideoURL + '?rel=0');
}
});
});
See Complete Code
Feel free to contact me for any help related to jQuery, I will gladly help you.
No comments:
Post a Comment