Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* PLEASE READ
- This code was written by mzrt for use at musikchan.com and was not originally intended for release
- Please realize that this code may be less than professional grade
- You are free to use this code for anything legal as long as you:
- 1. take all responsibility for the effects of this code
- 2. leave this disclaimer
- 3. leave all references to musikchan.com
- 4. consider sending me a message at [email protected] or join our discord at https://discord.gg/MxVFf77
- */
- $(document).ready(function() {
- var ytLinks = $('a[href^="https://youtu.be/"]').filter(function() {
- return this.innerHTML.match(/(https:\/\/youtu.be\/)([\S]{11})/);
- });
- $(ytLinks).each(function(index) {
- var x = null;
- var id = $(this).attr("href").split("be/")[1];
- var e = $('<a class="embed" id="' + id + index +'" href="#"> [embed]</a>').insertAfter($(this));
- e.click(function(evt) {
- evt.preventDefault();
- if (x != 1) {
- $(this).after('<div id="ytEmbed_' + id + '_' + index + '"><iframe width="560" height="315" src="https://youtube.com/embed/' + id + '" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen ></iframe></div>')
- $(e).html('<a class="embed" id="' + id + index +'" href="#"> [remove]</a>')
- x = 1;
- } else {
- $('#ytEmbed_' + id + '_' + index).detach();
- $(e).html('<a class="embed" id="' + id + index +'" href="#"> [embed]</a>')
- x = null;
- console.log('ytEmbed_' + id + '_' + index);
- }
- });
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement