intro.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. $( document ).ready(function() {
  7. $( "#bienvenido" ).click(function() {
  8. alert( "Bienvenido a jQuery" );
  9. });
  10. });
  11. $(function() {
  12. $("#bienvenido2").click(function() {
  13. alert("Has usado la versión corta de document.ready");
  14. });
  15. });
  16. $(function() {
  17. $("#llamar_id").click(function() {
  18. $(".class_name").css( "background-color", "transparent");
  19. $("#id_name").css( "background-color", "red");
  20. });
  21. $("#llamar_class").click(function() {
  22. $("#id_name").css( "background-color", "transparent");
  23. $(".class_name").css( "background-color", "red");
  24. });
  25. });
  26. //Método del espacio de nombres de $.fn
  27. $("h1").click(function() {
  28. $(this).remove();
  29. });
  30. //Método del espacio de nombres de $
  31. //Este método elimina los espacios en blanco
  32. $.trim( " lots of extra whitespace " );
  33. var myArray = [ 1, 2, 3, 5 ];
  34. //Devuelva el index del valor encontrado en un array o si no devuelve -1
  35. if ( $.inArray( 4, myArray ) !== -1 ) {
  36. console.log( "found it!" );
  37. }
  38. $("#callback").click(function(){
  39. $("#parraHide").hide("slow", function(){
  40. alert("El párrafo esta escondido");
  41. });
  42. });