He encontrado dos posibles códigos, el problema es que se bastante poco de jquery y no consigo encontrar cómo ponerlos en marcha para que cojan de un input text el texto que tienen que buscar, ¿¿alguien puede echarme un cable??
Gracias.
Uno de los códigos que he encontrado es este:
Código:
Y el otro es este:$("div:contains('León')").css("font-weight", "bold");
Código:
el segundo codigo está sacado de aquí: http://www.anieto2k.com/2008/10/13/6...er-con-jquery/$.fn.egrep = function(pat) { var out = []; var textNodes = function(n) { if (n.nodeType == Node.TEXT_NODE) { var t = typeof pat == 'string' ? n.nodeValue.indexOf(pat) != -1 : pat.test(n.nodeValue); if (t) { out.push(n.parentNode); } } else { $.each(n.childNodes, function(a, b) { textNodes(b); }); } }; this.each(function() { textNodes(this); }); return out; }; var anietos = $('body').egrep(/anieto2k/i); for (var x in anietos) { anietos[x].css("backgroundColor", "yellow"); }
un saludo