0
votes
1answer
101 views

extending html elements in javascript

I am working on a tool that creates GUIs by assembling it from smaller pieces of the user's choice. these smaller pieces are html elements that are created programaticly. with efficiency in mind I ...
2
votes
2answers
84 views

Javascript Object custom functions [duplicate]

Possible Duplicate: Javascript closure inside loops - simple practical example Javascript infamous Loop problem? I have a base function, that I want to control what ends up being like a ...
1
vote
1answer
337 views

“Object doesn't support method” error when extending Element.prototype in IE8

I understand that IE8 supports extension of the Element object. I tried a simple example, and it works in Google Chrome but not in IE8. Here is my code, and here is a jsfiddle to see my code: HTML ...
1
vote
1answer
105 views

Extending JavaScript?

I've been playing around with JavaScript extending its functionality but have noticed some behaviour I don't really want to happen. take this example: String.prototype.capitalize = function() { ...
1
vote
1answer
627 views

Prototype inheritance and extend existing objects

var Editor = {}; Editor.Basic = function(obj) { this.config ={ value: obj } }; Editor.Basic.prototype = { getValue: function() { return this.config.value; } }; ...
0
votes
2answers
170 views

CoffeeScript extend operator modifying 'this'?

I recently stumbled over something. I wanted to add the ability to remove an object from an array like this: someArray.remove(element) I wanted to use the extend operator of CoffeeScript and do it ...
0
votes
1answer
72 views

using the extend function

this is my very first post! I have a quick question in regarding inheritance in javascript. Of course the 'extend2' method is used to inherit child objects from the parent object using a for-in loop. ...
1
vote
1answer
151 views

extending Object.prototype.myNewMethod over all my Node application

I've just started at NodeJs so I am not familiar whether this is a good practice or not, sorry :( I have my Object implementation which add a merge method to all objects I create so I can merge to ...
3
votes
3answers
393 views

JavaScript Inheritance question

This is the extend function from the book "Pro JavaScript Design Patterns" function extend(subClass, superClass) { var F = function() {}; F.prototype = superClass.prototype; ...
4
votes
1answer
3k views

How do you call parent object functions from child objects in javascript

So, I was reading up on John Resig's blog, saw his micro-templating javascript engine and decided to try and implement my own template management system for javascript, to deepen my understanding of ...
2
votes
6answers
6k views

Javascript: extending map objects

I don't know how to extend the map object with prototype and hope you can help. I have something like this: var map = {'one':1, 'two':2}; and I would like to have a method to check for the ...