Last Updated | | Ratings | | Unique User Downloads | | Download Rankings |
2015-01-22 (1 year ago) | | Not enough user ratings | | Total: 118 | | All time: 365 This week: 24 |
|
Description | | Author |
This package is a JavaScript framework for Web manipulation. Currently it can
- Select page elements using XPath or CSS syntax
- Load page elements dynamically
- Manage the processing of events
- Send AJAX requests invoking callbacks when the request is started, ended or failed
- Etc.. | |
|
Details
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_
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.