plugin.js
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(function($) {
$.fn.youtube = function(youtubeID, width, height) {
var defaults = {
youtubeID: youtubeID,
width: width,
height: height
};
var options = $.extend(defaults, options);
return this.each(function() {
obj = $(this);
obj.show();
var youtubeID = defaults['youtubeID'];
var width = defaults['width'];
var height = defaults['height'];
obj.html("<a href='http://www.youtube.com/watch?v=" + youtubeID + "'><img src='http://img.youtube.com/vi/" + youtubeID + "/0.jpg' width='" + width + "' height='" + height + "' border='0' style='margin:0; padding:0; width:" + width + "px; height:" + height + "px; border:0px;'></a>");
obj.html("<iframe frameborder='0' marginheight='0' marginwidth='0' width='" + width + "' height='" + height + "' src='http://www.youtube.com/v/" + youtubeID + "' style='margin:0; padding:0; width:" + width + "px; height:" + height + "px; border:0px;'><a href='http://www.youtube.com/watch?v=" + youtubeID + "'><img src='http://img.youtube.com/vi/" + youtubeID + "/0.jpg' width='" + width + "' height='" + height + "' border='0' style='margin:0; padding:0; width:" + width + "px; height:" + height + "px; border:0px;'></a></iframe>");
obj.show();
});
};
})(jQuery);
$.fn.youtube = function(youtubeID, width, height) {
var defaults = {
youtubeID: youtubeID,
width: width,
height: height
};
var options = $.extend(defaults, options);
return this.each(function() {
obj = $(this);
obj.show();
var youtubeID = defaults['youtubeID'];
var width = defaults['width'];
var height = defaults['height'];
obj.html("<a href='http://www.youtube.com/watch?v=" + youtubeID + "'><img src='http://img.youtube.com/vi/" + youtubeID + "/0.jpg' width='" + width + "' height='" + height + "' border='0' style='margin:0; padding:0; width:" + width + "px; height:" + height + "px; border:0px;'></a>");
obj.html("<iframe frameborder='0' marginheight='0' marginwidth='0' width='" + width + "' height='" + height + "' src='http://www.youtube.com/v/" + youtubeID + "' style='margin:0; padding:0; width:" + width + "px; height:" + height + "px; border:0px;'><a href='http://www.youtube.com/watch?v=" + youtubeID + "'><img src='http://img.youtube.com/vi/" + youtubeID + "/0.jpg' width='" + width + "' height='" + height + "' border='0' style='margin:0; padding:0; width:" + width + "px; height:" + height + "px; border:0px;'></a></iframe>");
obj.show();
});
};
})(jQuery);