vote up 0 vote down star

How can I call a function from an object in javascript, like for example in jquery you call myDiv.html() to get the html of that div.

So what I want is this to work :

function bar(){
 return this.html();
}

alert($('#foo').bar());

this is a simplified example, so please don't say : just do $('#foo').html() :)

flag

71% accept rate

3 Answers

vote up 5 vote down check
jQuery.fn.extend({
    bar: function() {
        return this.html();
    }
});

alert($('#foo').bar());
link|flag
Dang, you beat me to it. Good work. ;) – KyleFarris Apr 23 at 17:06
vote up -1 vote down

To add a getHtml function to a div element with the id foo you could do this:

$("#foo")[0].getHtml = function () {
  return this.innerHTML;
};
alert($("#foo")[0].getHtml());

If this is not what you wanted, but rather extend jQuery, you should have a look at the post by Alex Barrett.

link|flag
vote up 3 vote down

You mean how you call a function with an object in context?

This works-

function bar() {
    return this.html();
}

bar.apply($('#foo'));

Or if you want to attach a method to an object permanently,

obj = {x: 1};
obj.prototype.bar = function() {return this.x;};
obj.bar();
link|flag
Clean and (most important) library agnostic. +1 – Pablo Fernandez Apr 23 at 17:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.