// http://www.ozzu.com/programming-forum/jquery-selecting-text-inside-textarea-t86381.html

$(function() {
	$("#videocode").click(function() {
		$(this).focus();
		$(this).select();
		});
	});
