How to run a function in jquery

JqueryFunction

Jquery Problem Overview


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!

Jquery Solutions


Solution 1 - Jquery

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).

Solution 2 - Jquery

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();
});

Solution 3 - Jquery

function doosomething ()
{
  //Doo something
}


$(function () {


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

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

});

Solution 4 - Jquery

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

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

Solution 5 - Jquery

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();

Solution 6 - Jquery

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.

Solution 7 - Jquery

Simple way that I do it in Modern JavaScript:

$(
  $("div.class").click(() => {doosomething});
  $("div.secondclass").click(() => {doosomething});
);

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionCorinView Question on Stackoverflow
Solution 1 - JqueryAndrew MooreView Answer on Stackoverflow
Solution 2 - JquerynoboruwatanabeView Answer on Stackoverflow
Solution 3 - JqueryVincent RamdhanieView Answer on Stackoverflow
Solution 4 - Jqueryc_harmView Answer on Stackoverflow
Solution 5 - JqueryJoey EzekielView Answer on Stackoverflow
Solution 6 - JquerySteveView Answer on Stackoverflow
Solution 7 - JqueryZafferView Answer on Stackoverflow