None of us is born with the right face. It’s a tough job being a portrait photographer.

Imogen Cunningham

menú
 

JaSper v3.5 (© José M. Carnero)

Project in GitHub: github.com/jmcarnero/JaSper

JaSper is a multipurpose JavaScript library with the following features:

Modules included:

Example:

$(document).debug().ready(function(){
	$('').eventAdd('click', function(ev){
		$('//p').toggle(500); //XPATH don't work in IE
	}).eventAdd('mousewheel', function(ev){
		if(JaSper.funcs.windowPosition().indexOf('bottom') > -1 && ev.wheelDelta == -3) alert('end of page');
	}).eventAdd('custom_event', function(ev){
		alert('custom event');
	}).eventFire('custom_event');
});
	

Tested on Firefox.

Also works on Chrome and IE.

This site works with JaSper v3.5