Re: Drupal 7 - Input Field and Javascript Events

Michael Favia <[email protected]>
Newsgroups gmane.comp.php.drupal.devel
Message-ID <[email protected]>
On 10/27/2011 10:45 AM, Carl Wiedemann wrote:
> A better method of doing this is to specify JS event handlers via a 
> separate file in drupal_add_js() using Drupal.behaviors. I don't know 
> of go-to documentation for this off of the top of my head, but do some 
> searching and look at examples in other core modules.
Perhaps something like:

// Using the closure to map jQuery to $.

(function ($) {

   // Store our function as a property of Drupal.behaviors.

   Drupal.behaviors.myModuleSecureLink = {

     attach: function (context, settings) {

       $('#formid #input-name').bind('focus', function() {
         alert('User clicked on "foo."');
       });

     }

   }

}(jQuery));

||

|
|

-- 
Michael Favia                   [email protected]
tel. 512.669.5650            http://www.favish.com
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.