Skip Navigation

[Resolved] No se muestran los resultados de busqueda al usar jquery

This support ticket is created 4 years, 8 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.

Sun Mon Tue Wed Thu Fri Sat
- 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 -
- 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 -

Supporter timezone: Europe/London (GMT+00:00)

Tagged: 

This topic contains 1 reply, has 2 voices.

Last updated by Nigel 4 years, 8 months ago.

Assisted by: Nigel.

Author
Posts
#1547361

Tell us what you are trying to do?

- Quiero usar jquery en algunos bloques de código de mi web y en los resultados de búsqueda. Per al usar y cargar la biblioteca CDN de jquery no aparecen los resultados de búsqueda.

Is there any documentation that you are following?

- He buscado en los canales de ayuda al respecto pero no encuentro nada que me solucione el problema

Is there a similar example that we can see?

- No he encontrado ningún ejemplo que me ayude.

What is the link to your site?

hidden link

#1547801

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+00:00)

¿Sabes que el WordPress ya carga jQuery y no es necesario cargarlo otra vez?

Es probable que presente problemas si se carga dos veces.

Se recomiende que se usa cuando el DOM dispara el evento 'ready', así:

( function( $ ) {
	$( document ).ready( function(){
		// Your code here can use $ for jQuery

	});
})( jQuery );