27/03/2013, 03:36
|
| | Fecha de Ingreso: marzo-2013
Mensajes: 25
Antigüedad: 11 años, 7 meses Puntos: 0 | |
Respuesta: Mootools por class ? Me respondo a mi mismo por si alguien se ve en las mismas, la solucion aqui:
http://www.xpertdeveloper.com/2011/11/6-things-you-must-know-in-mootools/
y en concreto...
// get Element with ID "name" - Asi me venia marcado en las opciones del script.
$('name')
document.id('name')
// Get All Elements with Class "class" - lo cambie con esta sintaxis
$$('.class')
// Get All Elements which
// ID starting with "demo_"
$$('[id^=demo_]')
// Get All Elements
// ID Ending with "_demo"
$$('[id$=_demo]')
// Get All Div Elements
// class ending with "_demo"
$$('div[class$=_demo]')
// Get all links with class "demo_link"
$$('a.demo_link')
Salud ! |