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!
 
     
     
     
     
     
     
     
    