onSuccess: function(text, xml) { new Element('div', { 'html': text }).inject($(object), 'after'); $(object).destroy(); }
Me gustaría inyectar el contenido con un elemento de desaparecer. ¿Alguna sugerencia?
Publicado 07 julio 2014 - 21:43
onSuccess: function(text, xml) { new Element('div', { 'html': text }).inject($(object), 'after'); $(object).destroy(); }
Publicado 07 julio 2014 - 22:46
onSuccess: function(text, xml) { new Element('div', { 'html': text, 'styles': { 'opacity': 0 } }).inject($(object), 'after').fade('in'); $(object).destroy(); }
Publicado 08 julio 2014 - 04:54