Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/03/2015, 11:28
Jose789
 
Fecha de Ingreso: diciembre-2012
Ubicación: Murcia
Mensajes: 329
Antigüedad: 12 años
Puntos: 4
Uncaught ReferenceError: is not defined

Hola buenos días, pues hoy andaba haciendo un "Sistema de Tag" para los usuarios de mi comunidad. Actualmente tengo echo esto funciona perfecto pero quiero recibir el valor del input para poder hacer las consultas necesarias para borrar dicho tag.



Código Javascript:
Ver original
  1. $('#search-field').keypress(function(event) {
  2.                 if (event.which == '13') {
  3.                     if ($(this).val() != '') {
  4.                         $('<li class="addedTag">' + $(this).val() + '<span class="tagRemove" onclick="$(this).parent().remove().borrar(' + $(this).val() +');">x</span><input type="hidden" value="' + $(this).val() + '" name="tags[]"></li>').insertBefore('.tags .tagAdd');
  5.                         $(this).val('');
  6.                         console.log('add tag');
  7.                     }
  8.                 }
  9.             });
  10. function borrar(tag) {
  11.    var tag = $(this).val();
  12.     alert(tag);
  13.   }
Código HTML:
Ver original
  1. <ul class="tags">
  2.            
  3.                         <li class="tagAdd taglist">  
  4.                              <input type="text" id="search-field" placeholder="Añadir tags">
  5.                         </li>
  6.     </ul>

Espero que me puedan echar una mano, Gracias de antemano.