﻿(function($) {
	$.fn.autoselect = function(options) {
//		var opt = $.extend({
//			targetSelector: '',
//			ignoreIfEmpty: false
//		}, options);
		$(this).focus(function() {
			$(this).select();
		});	
		return $(this);
	}
})(jQuery);
