Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7671745
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T16:07:39+00:00 2026-05-31T16:07:39+00:00

I have some jQuery code: $(function(){ function someFunc(){ /*do something*/ }; …………. }); And

  • 0

I have some jQuery code:

$(function(){ 
function someFunc(){
    /*do something*/
};
.............   
});

And now I want call someFunc from JavaScript like below:

function test(){    
$.fn.someFunc();
}

But it doesn’t work! I’ve seen an article how to call function in jquery from javascript. Is it possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T16:07:40+00:00Added an answer on May 31, 2026 at 4:07 pm

    Just defining a function within the closure (function) you pass into $() doesn’t do anything to put it on the jQuery fn object. To do that, you have to do it explicitly:

    $.fn.someFunc = someFunc;
    

    Typically, you wouldn’t do this within a callback on $(), you’d do it earlier. Plug-ins do this to add functionality, which should already be present prior to DOM ready.

    By way of example, here’s a silly little plug-in that turns text green:

    (function($) {
      $.fn.green = green;
      function green() {
        return this.css("color", "green");
      }
    })(jQuery);
    

    …which you might use from DOM ready:

    jQuery(function($) {
    
      $(".foo").green();
    
    });
    

    Live example | Live source

    Note that the call to it is from a jQuery instance, not directly from $.fn.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some jQuery code something like this: $(document).ready(function() { $(img.off).click(function() { alert('on'); $(this).attr('class',
I have some jQuery/JavaScript code that I want to run only when there is
I have some jquery code inserting a div like this function popUpBox(){ $(.openBox).click(function(){ var
I have some jQuery code that intercepts links clicked on a page: $(document).ready(function() {
I have some jQuery code. I have called an Ajax function file, file.php, that
I have the following code in JavaScript and jQuery: $(<li />) .html('Some HTML') I
I have some jquery code the creates an quantity text box. Like so <input
I have some JavaScript/jQuery code that watches for the changed event on a checkbox:
I have written some JavaScript and jQuery code that accepts only numeric input in
I have some jQuery code that copies the selected values from one listbox to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.