Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a programming newbie, and I can't figure out how to store a function in JQuery and run in it multiple places.

I have:

$(function () {
  $("div.class").click(function(){
    //Doo something

  });

  $("div.secondclass").click(function(){
    //Doo something
  });

});

Now the 2 "//Doo somethings" are the same, and I don't want to write the same code again.

If I put:

$(function () {

  function doosomething ()
  {
    //Doo something
  }

  $("div.class").click(doosomething);

  $("div.secondclass").click(doosomething);

});

That would run the function on page load, rather than only when it clicks.

How do I do this correctly?

Thanks!

share|improve this question

6 Answers

up vote 64 down vote accepted

The following should work nicely.

$(function() {

  // Way 1
  function doosomething()
  {
    //Doo something
  }

  // Way 2, equivalent to Way 1
  var doosomething = function() {
    // Doo something
  }

  $("div.class").click(doosomething);

  $("div.secondclass").click(doosomething);

});

Basically, you are declaring your function in the same scope as your are using it (JavaScript uses Closures to determine scope).

Now, since functions in JavaScript behave like any other object, you can simply assign doosomething as the function to call on click by using .click(doosomething);

Your function will not execute until you call it using doosomething() (doosomething without the () refers to the function but doesn't call it) or another function calls in (in this case, the click handler).

share|improve this answer
1  
Thank you for way 2, I'll have to try that. But the function is indeed ran on page load because in jquery $(function() is shorthand for document load. So way 1 at least, will not work. – Corin Jul 28 '09 at 3:58
Way 1 does work... I just tested it. – Andrew Moore Jul 28 '09 at 4:13
   
I am very new to jQuery, so can you explain the first line $(function() {? What is the purpose of this line, please? tyvm – Thang Pham Jul 24 '12 at 2:27
4  
$ is a shorthand for 'jQuery'. So everytime you see '$' somewhere, you have to think this is the jQuery function, the $(function(){}); will make it so that no particular event is specified: the code will be executed when the document is ready. $(function(){}); === jQuery(document).ready(function(){}); or $(document).ready(function(){}); – Ghillied Jul 25 '12 at 17:19

I would do it this way:

(function($) {
jQuery.fn.doSomething = function() {
   return this.each(function() {
      var $this = $(this);

      $this.click(function(event) {
         event.preventDefault();
         // Your function goes here
      });
   });
};
})(jQuery);

Then on document ready you can do stuff like this:

$(document).ready(function() {
   $('#div1').doSomething();
   $('#div2').doSomething();
});
share|improve this answer
1  
+1 perfect clean example – John Magnolia Sep 22 '12 at 12:28
3  
Does creating a function outside the "document ready" actually provide any benefits? – Navigatron Sep 28 '12 at 2:22
@Nuktu yes, for plugin development. – Swordfish0321 Jan 2 at 4:07
If you're using $ in the function parameter, then why bother calling it jQuery instead of using $ again? – Ben Taliadoros Mar 12 at 11:52
function doosomething ()
{
  //Doo something
}


$(function () {


  $("div.class").click(doosomething);

  $("div.secondclass").click(doosomething);

});
share|improve this answer

Alternatively (I'd say preferably), you can do it like this:

$(function () {
  $("div.class, div.secondclass").click(function(){
    //Doo something
  });
});
share|improve this answer
+1: Very true... – Andrew Moore Jul 28 '09 at 3:49
5  
That defeats the point of the question. – Corin Jul 28 '09 at 3:56
Nice when f.e div.secondclass doesn't exist yet... NOT! – bicycle Dec 12 '12 at 16:11

Is this the most obfuscated solution possible? I don't believe the idea of jQuery was to create code like this.There's also the presumption that we don't want to bubble events, which is probably wrong.

Simple moving doosomething() outside of $(function(){} will cause it to have global scope and keep the code simple/readable.

share|improve this answer

You can also do this - Since you want one function to be used everywhere, you can do so by directly calling JqueryObject.function(). For example if you want to create your own function to manipulate any CSS on an element:

jQuery.fn.doSomething = function () {
   this.css("position","absolute");
   return this;
}

And the way to call it:

$("#someRandomDiv").doSomething();
share|improve this answer

protected by Will Apr 14 '11 at 14:12

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.