Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/03/2009, 07:05
Avatar de Muzztein
Muzztein
 
Fecha de Ingreso: agosto-2002
Ubicación: Hangar 18
Mensajes: 1.703
Antigüedad: 22 años, 7 meses
Puntos: 16
Respuesta: Acceder a la propiedad "title" de un input - URGENTE Pleaseee!!

Palo de ciego:

nose... pero Si se puede acceder mediante JAVASCRIPT al valor del titulo de un input.


algo como asi:
Cita:
if ((oInput.value == '') && (oInput.title != '')) { oInput.value = oInput.title; }
// Add event handlers for focus and blur
autoPopulate.addEvent(oInput, 'focus', function() {
// If value and title are equal on focus, clear value
if (this.value == this.title) {
this.value = '';
// Make input caret visible in IE
this.select();
checa este link, alomejor te sirve de algo


http://www.456bereastreet.com/archiv...th_javascript/