Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. (function ($) {
  2. $(document).ready(function() {
  3. function myFunction() {
  4. return 'hai';
  5. }
  6. myFunction();
  7. });
  8.  
  9. Drupal.behaviors.test = {
  10. attach: function (context, settings) {
  11. //i want call myFunction() here.
  12. }
  13. };
  14. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement