/*
 * jquery.stripHtml 1.0 - Clean text
 * 
 * 
 * Copyright (c) 2009 Craig Kaminsky
 * http://www.imageaid.net/projects/
 *
 * Dual licensed under MIT and GPL 2+ licenses
 * http://www.opensource.org/licenses
 * 
 * 
 * Build: Mon Jun 29 09
 */
(function($) {
	$.fn.stripHtml = function() {  
		var regexp = /<("[^"]*"|'[^']*'|[^'">])*>/gi;  
		this.each(
			function() {  
				$(this).html(  
				$(this).html().replace(regexp,'')  );  
			}
		);  
		return $(this);  
	}  
})(jQuery);