File: README.md

Recommend this page to a friend!
  Classes of José M. Carnero   JaSper   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: JaSper info
Class: JaSper
JavaScript framework for Web manipulation
Author: By
Last change: Content type correction
Date: 9 years ago
Size: 1,481 bytes
 

Contents

Class file image Download

JaSper v3.0b José M. Carnero

JavaScript framework.

  • Selector XPath y CSS.
  • Carga dinámica de componentes.
  • Gestión de nodos y eventos.
  • Traducción automática de textos.
  • AJAX con callbacks para inicio, fin y fallo de peticion.
  • Canvas (en desarrollo).
  • Movimiento de objetos (en desarrollo).
  • Valoración.

Ejemplo:

$(document).setDebug(true).ready(function(){
	$('<body>').evAdd('click', function(ev){
		$('//p').toggle();
	}).evAdd('mousewheel', function(ev){
		if(JaSper.funcs.windowPosition().indexOf('bottom') > -1 && ev.wheelDelta == -3) alert('fin de página');
	});
});

_Testeo en Firefox_

In English:

JavaScript framework.

  • XPath selector and CSS selector.
  • Dynamic loading of components.
  • Node and events management.
  • Text translation.
  • AJAX with start callback, end callback and fail callback.
  • Canvas (draft version).
  • Object movement (draft version).
  • Rating.

Example:

$(document).setDebug(true).ready(function(){
	$('<body>').evAdd('click', function(ev){
		$('//p').toggle();
	}).evAdd('mousewheel', function(ev){
		if(JaSper.funcs.windowPosition().indexOf('bottom') > -1 && ev.wheelDelta == -3) alert('end of page');
	});
});

_Tested on Firefox_