From 1109132f09d75da9a28b649c7677bb6ce07c40c0 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:45 -0500 Subject: initial commit --- files/es/glossary/jquery/index.html | 64 +++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 files/es/glossary/jquery/index.html (limited to 'files/es/glossary/jquery') diff --git a/files/es/glossary/jquery/index.html b/files/es/glossary/jquery/index.html new file mode 100644 index 0000000000..5ddba3d180 --- /dev/null +++ b/files/es/glossary/jquery/index.html @@ -0,0 +1,64 @@ +--- +title: jQuery +slug: Glossary/jQuery +tags: + - Glosario + - JQuery + - JavaScript +translation_of: Glossary/jQuery +--- +

jQuery es una {{Glossary("JavaScript")}} {{Glossary("Library")}} que se enfoca en simplificar la manipulación del {{Glossary("DOM")}}, llamadas {{Glossary("AJAX")}} y manejo de {{Glossary("Event")}}. Es utilizado por desarrolladores JavaScript de manera frecuente.

+ +

jQUery usa un formato, $(selector).action() para asignar elementos a un evento. Para explicarlo con mayor detalle, $(selector) hara que jQuery seleccione los elementos selector y los asigne a un evento {{Glossary("API")}} llamado .action().

+ +
$(document).ready(function(){
+  alert("¡Hola Mundo!");
+  $("#blackBox").hide();
+});
+ +

El código anterior es equivalente al siguiente:

+ +
window.onload = function() {
+  alert( "¡Hola Mundo!" );
+  document.getElementById("blackBox").style.display = "none";
+};
+ +

Descargar jQuery

+ + + + + + + + + + + + + + + + +
npmbower (solo file)Google CDN
npm install jquerybower install https://code.jquery.com/jquery-3.2.1.min.jshttps://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
+ +

Aprende más

+ +

Conocimiento general

+ + + +

Aprende jQuery

+ + + +

Información técnica

+ + -- cgit v1.2.3-54-g00ecf