/*
 * exists 1.0 - jQuery plugin for better code readbility.
 * http://www.alexanderdickson.com/projects/jquery-plugins/exists/
 *
 * Copyright (c) 2009 Alex Dickson
 * Licensed under the MIT licenses.
 * See website for more info.
 *
 * Date: 2009-08-24 20:02:00 +1000 (Monday, 24 Aug 2009)
 */

(function($){
	$.fn.exists = function() {	
		return ($(this).length) ? true : false;	
	};
})(jQuery); 
