Ver Mensaje Individual
  #9 (permalink)  
Antiguo 12/07/2007, 21:09
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Como pasar parametros a una función?

Código:
<script type="text/javascript">/*<![CDATA[*/
function lv(v,n){
    alert(v+" y también "+n);
    }
document.onkeydown=function(v){lv( v, 'otroparametro' );}
/*]]>*/</script>