
$(document).ready(function() {

	$('#code_box').live('click',function() { 
								  
		$(this).focus();
		$(this).select();
		
	});
	
});
