1 / 31

Introduction to jQuery (for Drupal)

Introduction to jQuery (for Drupal). Amit Asaravala http://returncontrol.com amit@returncontrol.com “ aasarava ” on drupal.org. What is jQuery?. What is jQuery?. Magic. What is jQuery?. A JavaScript library: Makes writing JavaScript a lot easier

LeeJohn
Télécharger la présentation

Introduction to jQuery (for Drupal)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction to jQuery(for Drupal) Amit Asaravala http://returncontrol.com amit@returncontrol.com “aasarava” on drupal.org

  2. What is jQuery?

  3. What is jQuery? • Magic

  4. What is jQuery? • A JavaScript library: • Makes writing JavaScript a lot easier • Makes writing cross-browser compatible JavaScript a lot easier • Makes creating client-side interactivity a lot easier • Makes AJAX a lot easier

  5. How Do I Get jQuery?

  6. How Do I Get jQuery? • For Drupal 6 Sites: • jQuery 1.2.6 comes bundled • Loaded automatically (usually…) • Can use jquery_update module for jquery 1.3.2 • For Non-Drupal Sites: • http://docs.jquery.com/Downloading_jQuery • Get the “minified” version for production use

  7. How Do I Use It?

  8. How Do I Use It: Non-Drupal <head> <script type=“javascript” src=“jquery.js”></script> <script type=“javascript”> //your jquery code goes here. go crazy! </script> </head>

  9. How Do I Use It: Drupal Theme • Create a script.js file in your theme folder. • Your jQuery code goes in there.

  10. How Do I Use It: Drupal Module • Create a mymodule.js file. • Use drupal_add_js() function in your module. mymodule_init() { $path = drupal_get_path(‘module’, ‘mymodule’); drupal_add_js($path . '/mymodule.js'); }

  11. Yeah, But How Do I Use It?

  12. Writing jQuery • Series of statements • Each statement is usually a 3-step process: • Select an element • Attach an event (optional) • Specify what happens “For this heading, when the user clicks on it, I want monkeys to fly across the page.”

  13. 3-Step Process • Select element: jQuery( ‘h2’ ) • Attach an event: jQuery( ‘h2’ ).click( ) • Specify what happens: jQuery( ‘h2’ ).click( monkeysFly );

  14. Your Final Statement jQuery(‘h2’).click( monkeysFly );

  15. $horthand $(‘h2’).click( monkeysFly ); see example

  16. More Selectors $(‘input’).click( monkeysFly ); $(‘.title’).click( monkeysFly ); $(‘#edit-title’).click( monkeysFly ); $(‘h2, h3, .title’).click( monkeysFly );

  17. Monkey Code Inside script.js: $('h2').click( monkeysFly ); function monkeysFly() { $('img.monkey').fadeIn('slow'); }

  18. Anonymous Functions $('h2').click( function() { $('img.monkey').fadeIn('slow'); } );

  19. Anonymous Functions, 2 $('h2').click(function() { $('img.monkey').fadeIn('slow'); });

  20. Wait ‘Til Browser is Ready $(document).ready(function() { $('h2').click(function() { $('img.monkey').fadeIn('slow'); }); });

  21. Tool: Visual jQuery • http://visual.jquery.com/

  22. Example: Dynamic Form Components • Show character count as user is typing?No problem!

  23. Example: Dynamic Form Components Let’s do this in a module countchars.module: function countchars_init() { $path = drupal_get_path(‘module’, ‘countchars’); drupal_add_js( $path . ‘/countchars.js’); }

  24. Example: Dynamic Form Components • countchars.js • $(document).ready(function() { • });

  25. countchars.js • $(document).ready(function() { • $('#edit-title').keyup( function() { • }); • });

  26. countchars.js $(document).ready(function() { $('#edit-title').after( '<div id="chars">characters: 0</div>' ); $('#edit-title').keyup( function() { }); });

  27. Chaining • $(document).ready(function() { • $('#edit-title') • .after( '<div id="chars">characters: 0</div>' ) • .keyup( function() { • }); • });

  28. countchars.js • $(document).ready(function() { • $('#edit-title') • .after( '<div id="chars">characters: 0</div>' ) • .keyup(function() { • var count = $('#edit-title').val().length; • $('#chars').html( 'characters: ' + count ); • }); • });

  29. $(this) • $(document).ready(function() { • $('#edit-title') • .after( '<div id="chars">characters: 0</div>' ) • .keyup(function() { • var count = $(this).val().length; • $('#chars').html( 'characters: ' + count ); • }); • });

  30. countchars.js • var count = $(this).val().length; • $('#chars').html( 'characters: ' + count ); • if(count < 15) { • $('.body-field-wrapper').fadeIn('slow'); • } • else { • $('.body-field-wrapper').fadeOut('slow'); • }

  31. Resources • jquery.com -- main site • visual.jquery.com -- reference • jqueryui.com -- UI components • getfirebug.com -- inspecting/debugging • addons.mozilla.org/en-US/firefox/addon/60/-- web developer toolbar Contact • amit@returncontrol.com • http://returncontrol.com • http://parentingmode.com

More Related