Home
Softono

JQuery Youtube Channels Playlist

Open source MIT JavaScript
93
Stars
60
Forks
10
Issues
14
Watchers
1 year
Last Commit

 About JQuery Youtube Channels Playlist

jQuery plugin youtube playlist

Platforms

Web Self-hosted

Languages

JavaScript

Need Help Installing JQuery Youtube Channels Playlist?

We provide expert installation service for this software. Our team will install, configure, and secure JQuery Youtube Channels Playlist on your server. plans start at just $30.

JQuery Youtube Channels Playlist

View on GitHub

jQuery-Youtube-Channels-Playlist

Update youtube API v3

YouTube device support message
https://developers.google.com/youtube/v3/getting-started



Features:
- you can customize width and height of the widget on your website.
- the widget itself is responsive; given a width (or %) for the widget, the inner contents will resize accordingly.
- a top featured video can be opened in the video player on load of the widget.
- displays your actual complete youtube channel on your website just like its shown on youtube.
- multi channel playlist.

Register and get your Youtube API key here

HTML:

Required:

data-ycp_channel = 'vevouk'

Options:

data-ycp_title = 'Title your playlist'

Javascript:

Required:

apikey : 'xxxxxxxxxxxxxxxx'

Options:

playlist : number of videos playlist count. Default = 10
autoplay : true. Default = false
related : true. Default = false
<!-- CSS -->
<link type="text/css" rel="stylesheet" href="https://github.com/bachors/jQuery-Youtube-Channels-Playlist/blob/master/css/ycp.css" />

<!-- Selector by Id -->
<div id="unix" data-ycp_title="#Demo - iBacor.com" data-ycp_channel="UCoiS7s7HrE7bHNuzERi-FCQ"></div> <!-- By ChannelId -->

<!-- Selector by ClassName -->
<div class="demo" data-ycp_title="#Javascript - Sekolah Koding" data-ycp_channel="PLCZlgfAG0GXAiH1acKFPx8EtpJAq44gjP"></div> <!-- By PlayListId -->
<div class="demo" data-ycp_title="#News - Vevo Uk" data-ycp_channel="vevouk"></div> <!-- By UserName -->

<!-- jQuery -->
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://raw.githubusercontent.com/bachors/jQuery-Youtube-Channels-Playlist/master/js/ycp.js"></script>
<script>
$(function() {
        
    $("#unix").ycp({
        apikey : 'xxxxxxxxxxxxxxxx',
        playlist : 6,
        autoplay : true,
        related : true
    });
            
    $(".demo").ycp({
        apikey : 'xxxxxxxxxxxxxxxx'
    });
            
});
</script>