Ver Mensaje Individual
  #13 (permalink)  
Antiguo 12/06/2010, 18:08
m3p
 
Fecha de Ingreso: noviembre-2009
Mensajes: 24
Antigüedad: 15 años
Puntos: 0
Respuesta: Poner un elemento de una forma en un confirm

Código HTML:
<html> 

 <head> 

  <Title>DNC tool</Title> 
 </head> 

<body>
	
<form action="dnc_erase.cfm" method="post">
  <select id="sel" onchange="verification1();">
    <option value="0">Select a partition</option>
<cfoutput query="dncgetpartitions">
    <option value="#librarypartitionid#">#NAME#</option>
</cfoutput> 
  </select>
 <div id="hiddentext" style="display: none;">
  <textarea name="comments" id="txtOther" cols="40" rows="5">
Enter the phone numbers here, separated by a comma. 
Example: 
9182736450,6142478087,etc
  </textarea><br>
  <script language="JavaScript">
 var companyname = name.options[nname.selectedIndex].text;
 [B]var companyname = name.options[nombre.selectedIndex].text;[/B]
 </script>
 <input type="submit" value="Submit" OnClick="if(!confirm('Are you sure that you want to add these numbers to the DNC list for&nbsp;' + companyname)) return false;" />
 </div>
</form>

<script language="JavaScript">
   function verification1()
 {
   var sel = document.getElementById( 'sel' );
   var hiddentext = document.getElementById( 'hiddentext' );
   
   if( sel.options[ sel.selectedIndex ].value != '0')
   {
     hiddentext.style.display = 'block';
   }
   else
   {
     hiddentext.style.display = 'none';
   }
 }  
 </script>
</body> 

</html> 
Ahi puse en negritas donde creo que esta el error :S porque cuando le cambie a [2] cambio la opcion, pero sigue sin traerme el que tengo seleccionado....asi tal cual esta solo trae el primer registro del select.

Muchas gracias!