Hi list, I have the next code. can be done better?
[code[
var el_back;
$('main_form').select('*').each(function(el){
if(el.type=='text' || el.type=='select-one'){
el.observe('focus', function(evt){evt.element().select()});
if(el_back){
el_back.observe('keydown', function(evt){
var key = evt.which || evt.keyCode;
if(key==Event.KEY_RETURN){
evt.stop();
el.focus();
}
});
};
el_back=el;
}
})
--
________________________________________
Lo bueno de vivir un dia mas
es saber que nos queda un dia menos de vida
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---