All Downloads are FREE. Search and download functionalities are using the official Maven repository.

moskito.ext.tablesorter.docs.js.docs.js Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/* Stop IE flicker */
if ($.browser.msie == true) document.execCommand('BackgroundImageCache', false, true);
ChiliBook.recipeFolder     = "js/chili/";
ChiliBook.stylesheetFolder = "js/chili/"

jQuery.fn.antispam = function() {
  return this.each(function(){
	var email = $(this).text().toLowerCase().replace(/\sdot/g,'.').replace(/\sat/g,'@').replace(/\s+/g,'');
	var URI = "mailto:" + email;
	$(this).hide().before(
		$("").attr("href",URI).addClass("external").text(email)
	);
  });
};


$(function() {
	$("pre.javascript").chili();
	$("pre.html").chili();
	$("pre.css").chili();
	$("a.external").each(function() {this.target = '_new'});	
	$("span.email").antispam();
});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy