User:KurwaAntics/common.js: Difference between revisions
From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
KurwaAntics (talk | contribs) No edit summary |
KurwaAntics (talk | contribs) No edit summary |
||
Line 7: | Line 7: | ||
return false; | return false; | ||
} else { | } else { | ||
var | var id = $(this).attr('href').split('.be/')[1].split('?')[0]; | ||
$('body').prepend('<div class="greyout"><span class="close-modal">✕</span></div><div class="mymodal" style="width: 800px; height: 450px;"><iframe style="width:100%; height:100%" src="http://www.youtube.com/embed/' + id + '" frameborder="0"></iframe></div>'); | |||
$('body').prepend('<div class="greyout"><span class="close-modal">✕</span></div><div class="mymodal" style="width: 800px; height: 450px;"><iframe style="width:100%; height:100%" src="http://www.youtube.com/embed/' + id + ' | |||
$('.close-modal').on('click', function() { | $('.close-modal').on('click', function() { | ||
$(".greyout, .mymodal").remove(); | $(".greyout, .mymodal").remove(); | ||
Line 16: | Line 15: | ||
} | } | ||
}); | }); | ||
$('a[href*="youtube.com/watch"]').on('click', function(){ | $('a[href*="youtube.com/watch"]').on('click', function(){ | ||
Line 22: | Line 20: | ||
return false; | return false; | ||
} else { | } else { | ||
var | var id = $(this).attr('href').split('?v=')[1].split('&')[0]; | ||
$('body').prepend('<div class="greyout"><span class="close-modal">✕</span></div><div class="mymodal" style="width: 800px; height: 450px;"><iframe style="width:100%; height:100%" src="http://www.youtube.com/embed/' + id + '" frameborder="0"></iframe></div>'); | |||
$('body').prepend('<div class="greyout"><span class="close-modal">✕</span></div><div class="mymodal" style="width: 800px; height: 450px;"><iframe style="width:100%; height:100%" src="http://www.youtube.com/embed/' + id + ' | |||
$('.close-modal').on('click', function() { | $('.close-modal').on('click', function() { | ||
$(".greyout, .mymodal").remove(); | $(".greyout, .mymodal").remove(); |
Revision as of 22:11, March 27, 2016
if( window.location.href.indexOf('T:') > -1) window.location.href = window.location.href.replace('T:','Template:');
if( window.location.href.indexOf('Css') > -1) window.location.href = window.location.href.replace('Css','User:UntergangerPlus/vector.css');
if( window.location.href.indexOf('Js') > -1) window.location.href = window.location.href.replace('Js','User:UntergangerPlus/common.js');
$('a[href*="youtu.be/"]').on('click', function(){
if ($(".greyout")[0]){
return false;
} else {
var id = $(this).attr('href').split('.be/')[1].split('?')[0];
$('body').prepend('<div class="greyout"><span class="close-modal">✕</span></div><div class="mymodal" style="width: 800px; height: 450px;"><iframe style="width:100%; height:100%" src="http://www.youtube.com/embed/' + id + '" frameborder="0"></iframe></div>');
$('.close-modal').on('click', function() {
$(".greyout, .mymodal").remove();
});
return false;
}
});
$('a[href*="youtube.com/watch"]').on('click', function(){
if ($(".greyout")[0]){
return false;
} else {
var id = $(this).attr('href').split('?v=')[1].split('&')[0];
$('body').prepend('<div class="greyout"><span class="close-modal">✕</span></div><div class="mymodal" style="width: 800px; height: 450px;"><iframe style="width:100%; height:100%" src="http://www.youtube.com/embed/' + id + '" frameborder="0"></iframe></div>');
$('.close-modal').on('click', function() {
$(".greyout, .mymodal").remove();
});
return false;
}
});