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

  • Home
  • SEARCH
  • 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 9057083
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T14:21:48+00:00 2026-06-16T14:21:48+00:00

I have some code in jsFiddle here: http://jsfiddle.net/xyuY6/ And the code: var App= {};

  • 0

I have some code in jsFiddle here: http://jsfiddle.net/xyuY6/

And the code:

var App= {};

App.WebPage = {
 WebPage : function(name) {
     alert("In Super");
     this.name = name;  
 },

 Home : function(name) {
      alert("In Sub");
      App.WebPage.WebPage.call(this, name);
 }


};

App.WebPage.WebPage.prototype.sayName = function() {
alert(this.name);
};

inherit(App.WebPage.WebPage, App.WebPage.Home);

var x = new App.WebPage.Home("zack");
x.sayName();

function inherit(subType, superType) {
    alert("IN HERE");
    var p = Object.create(superType);
    p.constructor = subType;
    subType.prototype = p;
}

What I’m trying to do is create a App namespace with two constructors in this namespace, WebPage and Home. WebPage is a “super type” and Home is the “sub type”. Home should inherit everything from WebPage.

The problem though, as you’ll see when you run the JavaScript, is the sayName function defined on the WebPage prototype is not being called when I do x.sayName. Thus, it’s not being inherited.

Why?

Thanks for the help!!!

  • 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-06-16T14:21:49+00:00Added an answer on June 16, 2026 at 2:21 pm

    It seems like you got the superclass and subclass mixed up at some point (either in the call or in inherit‘s definition)…

    Here’s the fixed code (if I understand what you are trying to do): http://jsfiddle.net/45uLT/

    var App= {};
    
    App.WebPage = {
         WebPage : function(name) {
             alert("In Super");
             this.name = name;  
         },
    
         Home : function(name) {
              alert("In Sub");
              App.WebPage.WebPage.call(this, name);
         }
    
    
    };
    
    
    App.WebPage.WebPage.prototype.sayName = function() {
        alert(this.name);
    };
    
    inherit(App.WebPage.WebPage, App.WebPage.Home);
    
    var x = new App.WebPage.Home("zack");
    x.sayName();
    
    function inherit(superType, subType) {
        alert("IN HERE");
        var p = new superType;
        subType.prototype = p;
        subType.prototype.constructor = subType;
    }
    

    Hope this is what you wanted.

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

Sidebar

Related Questions

I have some code here: http://jsfiddle.net/zkRq2/2/ that I am having issues with. If you
Please check out my code here http://jsfiddle.net/bYDPr/20/ So I have some HTML textarea elements
I have a little javascript app set up here: http://jsfiddle.net/faYMH/ What i want it
I have a fiddle here: http://jsfiddle.net/justinboyd101/4nrbb/ Here is my question: Why are my console.log
I have some code here that uses bitsets to store many 1 bit values
I have setup some code on JSFiddle. The jQuery :contains selector works fine in
I've tried to recreate my issue in jsfiddle: http://jsfiddle.net/erU5J/72/ I have a textarea: When
I have some code like this, well here is the part that is most
I have the following code with some thumbnails: <img onclick=if($(this).hasClass('zoom'{ this.src='http://24.media.tumblr.com/tumblr_m2uql6rJsI1r9fv99o1_100.gif'; $(this).animate({'width':'100','height':'50'}).removeClass('zoom') }else{ this.src='http://27.media.tumblr.com/tumblr_m2uql6rJsI1r9fv99o1_500.gif';
I have some HTML code. Here is a link to a fiddle with a

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.