You don’t have to pose your camera. The pictures are there, and you just take them. The truth is the best picture, the best propaganda.

Robert Capa

menú
 

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

Proyecto en GitHub: github.com/jmcarnero/JaSper

JaSper es una librería multiproposito JavaScript con las siguientes características:

Módulos incluidos:

Ejemplo de uso:

$(document).debug().ready(function(){
	$('body').eventAdd('click', function(ev){
		$('//p').toggle(500); //XPATH no funciona en IE
	}).eventAdd('mousewheel', function(ev){
		if(JaSper.funcs.windowPosition().indexOf('bottom') > -1 && ev.wheelDelta == -3) alert('fin de página');
	}).eventAdd('custom_event', function(ev){
		alert('evento personalizado');
	}).eventFire('custom_event');
});
	

Testeo en Firefox.

También funciona en Chrome e IE.

Éste sitio funciona con JaSper v3.5