Tip: Click lines to highlight, hold ctrl/cmd to multi-select
http://codedumper.com/apiwa (6-Aug @ 18:45)
Syntax Highlighted Code
- $(document).ready(function(){
- $('#video_box').hide();
- $('a.video-link', this).click(function(){
- $(this).next('#video_box').slideToggle();
- return false;
- });
- $('a.video-close', this).click(function(){
- $(this).parent('#video_box').hide();
- return false;
- }, function(){
- $(this).siblings('#video_frame').empty();
- })
- });
Plain Code
$(document).ready(function(){
$('#video_box').hide();
$('a.video-link', this).click(function(){
$(this).next('#video_box').slideToggle();
return false;
});
$('a.video-close', this).click(function(){
$(this).parent('#video_box').hide();
return false;
}, function(){
$(this).siblings('#video_frame').empty();
})
});