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 7018707
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:05:13+00:00 2026-05-27T23:05:13+00:00

In trying to namespace my js/jquery code, I have come up against the following

  • 0

In trying to namespace my js/jquery code, I have come up against the following problem.

Basically, I used to write all my JS code in each html/php file, and I want to abstract that away to a single js file with namespaces.

So, in my html file I have:

<script type="text/javascript"> 
    $(document).ready(productActions.init());
</script>

And in my js file I have:

var productActions = {
    init: function() {

        alert('initialsed');

        $('#field_id').change(function() {
            alert('ok!');
        });     
    }

The productActions init function is definitely running, because I get the first alert (initialised). However, it seems that none of the jquery binding functions do anything at all. Stepping through the init function shows that the above change function is being registered, but actually changing the value in the field does absolutely nothing.

Am I missing something obvious here?

  • 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-27T23:05:13+00:00Added an answer on May 27, 2026 at 11:05 pm
    $(document).ready(productActions.init());
    

    This code calls init() immediately and passes its return value to ready(...). (just like any other function call)

    Instead, you can write

    $(document).ready(productActions.init);
    

    To pass the function itself. Howeverm this will call it with the wrong this; if you need this, write

    $(document).ready(function() { productActions.init() });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem trying to validate a user value using the jQuery Validation
When I trying to use System.Windows.Form.Design namespace, I have to add reference all the
I am trying to find all of the types in the Models namespace within
Here's my problem - I'm trying to access a session namespace across actions .
I'm trying to compile such code: #include <iostream> using namespace std; class CPosition {
i'm having a javascript function using jquery: my.namespace.loadSomeStuff = function() { $.get('/Services/loadStuff', function(c){ $(#stuffDiv).html(c);
I'm am trying to create a jQuery plugin that will add new namespace functions
Possible Duplicate: What does jQuery.fn mean? I have some script on a page trying
I have the following web service that allows me uploading files: [WebService(Namespace = http://tempuri.org/)]
I am trying to implement jquery full calendar with json event updates. I have

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.