Ver Mensaje Individual
  #9 (permalink)  
Antiguo 31/05/2010, 08:26
Luciata
 
Fecha de Ingreso: mayo-2010
Ubicación: www.brumasound.com
Mensajes: 52
Antigüedad: 14 años, 6 meses
Puntos: 0
Exclamación Respuesta: Buscar cadena de texto en html con funcion Javascript

Alguien sabe cual es el fallo?

Al hacer click en el link de la primera funcion no me ejecuta la segunda.
Código HTML:
$(document).ready(function proyecto()
{
$('<li><a href="#" onclick="this.blur(); tabla();" id="ttpro" title="Proyectos">Proyectos </a></li>').insertAfter('.currenttab');
});
	
function tabla()
{
	id = document.getElementById("ticketid").value;
	document.write('<iframe frameborder="0" src="http://brumasound.com/kayakoser/index.php?ticketid="'+id+'" width="780" height="95">');
	document.write ('</iframe>');
};