0
votes
1answer
52 views

Why my extend() method in Javascript don't work for 3 and more objects?

I have 3 object. netBuilder Numbering NumberingMethodDefault And i have some extend method. extend: function (Child, Parent) { var F = function () {}; F.prototype = Parent.prototype; ...
0
votes
1answer
57 views

Extend Zepto.js so don't need jQuery anymore

I like the idea of cutting out 80% of jQuery by using Zepto.js. However, when making the switch, it is clear some of the jQuery plugins I'm using, for example jQueryUI draggable(), can't find in Zepto ...
0
votes
1answer
38 views

Extending Element in MooTools gives error “Uncaught TypeError: Cannot call method 'set' of null”

I have this very simple MooTools script: var MyElement = new Class({ Extends: Element }); which gives the error: Uncaught TypeError: Cannot call method 'set' of null I'm using MooTools 1.4.5, ...
1
vote
1answer
71 views

How this and $(this) end up being the same when extending jQuery?

I'm trying to work with a plugin which extends jQuery like so: $.extend({ StatelessDeferred: function () { var doneList = $.Callbacks("memory"), promise = { ...
2
votes
1answer
65 views

Extend a JavaScript object by passing a string with the path and a value

Is there an easy way to extend a JavaScript object by passing a string and a value? Basically I need something like this: myObject = {} var extendObj = function(obj, path, value){ } var path = ...
0
votes
1answer
78 views

jquery fn.extend() returning values and call values in object

I need some help in understanding something, that propably is easy for serious jquery and javascript programmers. Lets say I have a code like this: jQuery.fn.extend({ myNameSpace: { ...
2
votes
1answer
83 views

Creating and Defining base view for backbone.js

I am attempting to extend backbone views to add a basic implementation of a layout "skeleton". This will be used to piece together a page using the different components. The problem as listed below is ...
0
votes
0answers
24 views

recursively extending and merging javascript objects

I have written two methods for extending and merging javascript objects. It might be bad question, but I'm not sure that I'm doing it right. Can you look at code and tell if I need something to ...
0
votes
2answers
218 views

How to implement multiple inheritance using jQuery extend

According to Douglas Crockford I could use something like http://javascript.crockford.com/prototypal.html (with a little bit of tweaking)... but I am interested in jQuery way of doing it. Is it good ...
0
votes
1answer
28 views

JavaScript referencing an object in an argument

Does JavaScript reference a global object anywhere in the code (function, object, etc)? I have wrote this and it works as it works (written in inline-comments): function Extender(object, property, ...
0
votes
0answers
63 views

Javascript Library Extend way

I'm writing my own JavaScript library. How can I do for extend my object in this way? _.mymethod(); Here's my code: (function (window, undefined) { "use strict"; var emptyArray = []; ...
1
vote
1answer
57 views

Is it possible to extend private function?

I would like to override private funtion of lightbox library. This is the part of its code: $.fn.lightBox = function(settings) { var jQueryMatchedObj = this; // This, in this context, refer to ...
0
votes
1answer
104 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
87 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 ...
0
votes
1answer
233 views

How to setExtendedAccessToken facebook javascript sdk?

I've been trying to figure out how to extend the access token using the Facebook JavaScript API. I see a lot of code examples using PHP but JavaScript seems really hard to find. A PHP SDK method ...
1
vote
2answers
78 views

Javascript, simple extension method that allows multiple versions of extending object

I have a straightforward "extend" method set up like this: extend: function(source) { for (var k in source) { if (source.hasOwnProperty(k)) { myThing[k] = source[k]; } ...
0
votes
2answers
566 views

Nested object extend and skipping undefined properties (in Angular or Underscore)

Is there any implementation (or pattern) on how to handle the following extend cases? AFAIK there's no way to do it straightforward neither in Angular or Underscore, is that right? Otherwise here's ...
1
vote
1answer
344 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 ...
3
votes
3answers
236 views

Merge Object & Array: Javascript, JQuery

Illustrative example: d1 = { "ean_code": ["OA13233394CN08", "8903327046534", "8903327014779"], "balance_qty": [5, 10, 15] } And d2 = { "ean_code": ["OA13233394CN11", "OA13233394CN08", ...
1
vote
1answer
357 views

Modifying jQuery extend to push array items within objects but extend other objects

I'm thinking this must be a common problem but can't seem to find the solution. Using JSON config files to extend a jQuery object that contains objects and arrays. For the objects and simple ...
1
vote
2answers
78 views

Clone and extend object in jQuery?

Ok, so here is the basics of what I want to do: var Hi = function(name){ this.name = name; }; Hi.prototype = { message: function(){ $('body').append('Hi '+this.name); } }; var ...
2
votes
2answers
93 views

What should callback functions default value be in object?

The Issue I am trying to specify options for an objects method and one of the options is a callback function. I am using the jQuery extend method to apply my default values to the options parameter ...
0
votes
3answers
121 views

Can JQuery $.extend be used with indexing?

I am trying to extend an Object of the following structure (with JQuery in Coffeescript): objectThatIsAList = { 'List Item' : callback :=> return "Some value" 'Another ...
0
votes
1answer
95 views

Access $.fn.extend methods from separate file

Need to access a method from another page. Seems like there should be something like $("#selectedClip").setValue(4,4); (function($) { $.fn.extend({ spinit: function(options) { var ...
0
votes
3answers
50 views

How to include reference to original function when doing an override with jQuery.extend() [closed]

So, I'm trying to override a function but include it's original methods with the jQuery.extend() method. var origFunction = $.fn.pluginFunction; $.fn.extend({ pluginFunction: ...
5
votes
1answer
89 views

Overriding a function without removing static properties

If I have a function like this: function a() { console.log('a'); } and then assign a static property like this: a.static = 'foo'; But say I want to override the function with another ...
0
votes
1answer
513 views

Extending bootstrap jQuery modal

I would like to extend $.fn.modal in Bootstrap/jQuery so my extended version "does things" before a modal is initialized by passing extra options. I tried this like I do some times to extend jQuery ...
1
vote
0answers
71 views

Extending jQuery.mobile-1.1.0.js

I would like to extend a core jQuerymobile function. Here's the link to JQM library: http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.js I want to change line 6574 headerClose; into ...
3
votes
1answer
674 views

Underscore js extend method

Looks like Underscore library won't treat functions in JSON as first class citizens. Why doesn't this fiddle work? http://jsfiddle.net/anV28/ var a = { 'f1': function(){var s='success';} }; var b = ...
2
votes
6answers
2k views

Extend Zepto.js with a jQuery method? scrollTop()

I'm using Zepto.js on a current project. Zepto doesn't support the scrollTop() method that jQuery has in it. Is it possible to kind of extend Zepto to work with scrollTop() too? Update: All I want ...
1
vote
4answers
137 views

Why do I need to set constructor for a extend function?

I'm trying to fully understand how 'extend' works in javascript. Here's a simple extend function I found on google function extend(child, parent) { var f = function() {} f.prototype = ...
1
vote
1answer
423 views

How to do pre and post method call of loadComplete and onSelectRow of jqGrid genecally?

I have special implementation for my grid. For this i wrote some code in onSelectRow and loadComplete methods of jqGrid. In onSelectRow i need to update a global array and in loadComplete method I ...
0
votes
2answers
163 views

Replacing object's properties with properties from another object in JavaScript, without libraries

I've been using jQuery.extend to replace default properties like this var Car = function(options){ var defaultOptions = { color: "hotpink", seats: { material: "fur", ...
1
vote
1answer
230 views

Issue on extending functionality on a simple jQuery plugin ?

This test plugin, is supposed to work like this: When an element is clicked, it moves down. Simple as that. jQuery.fn.moveDown = function(howMuch){ $(this).css("border", "1px solid black"); ...
4
votes
4answers
2k views

Ways to extend Array object in javascript

i try to extend Array object in javascript with some user friendly methods like Array.Add() instead Array.push() etc... i implement 3 ways to do this. unfortunetly the 3rd way is not working and i ...
4
votes
2answers
1k views

JavaScript equivalent of jQuery's extend method [duplicate]

Possible Duplicate: How can I merge properties of two JavaScript objects dynamically? Background I have a function that takes a config object as an argument. Within the function, I also ...
1
vote
2answers
154 views

Extending DOM but NOT element prototype.. possible?

I would like to extend some group or class if you want in DOM but I dont want to have all lements extended. It is possible? for example: document.getElementsByClass('extended').myMethod(); // ...
0
votes
1answer
132 views

how to show a div if some content on a page extend and not longer fits the screen totaly but there is a scroll bar needed

I have a script that will hide a div when the site fills the screen but there is no need to scroll the page down so the site fits the screen at this point the divs are hidden true the script. I have ...
0
votes
3answers
299 views

How to extend javascript library through plugins?

Say i want to develop a library that will keep a very small core and may be extended through plugins. So i basically came up with something in the scale of: (function(window){ ...
4
votes
1answer
858 views

Why does jQuery Extend Deep Copy not recursively copy an object?

I've searched everywhere and found similar questions with answers that didn't really address my issue so I apologize if this seems like a repeat, but it appears from my experimenting that jQuery's ...
0
votes
1answer
652 views

extend a jQuery Object to my own Object

My problem is the following code! I want extend a jQuery Object to my XjQuery object and i seems to be work. but in the each function where i will find the object the function myfunc is not declared ...
1
vote
2answers
243 views

How to extend or prototype a HTML table

Is is possible to extend a native HTML table? c# example: public class: htmltable{} or something like: HTMLTable.prototype.myType=function(){ this.clss='myClass'; ...
0
votes
4answers
133 views

Prototype for private sub-methods

I have code that looks like this: var baseClass = function() { // CODE var subClass = function() { // MORE CODE } } Adding methods to baseClass is fine, I just use ...
1
vote
1answer
109 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
634 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; } }; ...
3
votes
1answer
156 views

How to Extend JavaScript with global method like .toLowerCase()?

I'm trying to find out how to extend JavaScript with some of my own methods similar to toLowerCase() Say I wanted a capitalize() or addUnderscores(), really whatever. I'm assuming there is a way to ...
1
vote
1answer
69 views

Unexpected constructor / extend behavior in BackboneJS

Got really confused on how JavaScript/BackboneJS works. Let's consider the following example: window.MyView = Backbone.View.extend({ index: 0, list: [], initialize: function () { ...
1
vote
2answers
714 views

how does jquery extend() with multiple objects work?

I am trying to modify a plugin and am pulling my hair out trying to understand how extend() is working... If I have this: $.extend( plugin.ext.oStdClasses, { "some":"one" }, $.extend( ...
1
vote
3answers
57 views

adding an object into another object that is in another object

Say that there are three objects, a note, a noteState, and history: var note = { text: "hello new world" } var history = {} var noteState = {} how would i be able to add note into noteState, ...
6
votes
2answers
499 views

Can I extend the console object (for rerouting the logging) in javascript?

Is it possible to extend the console object? I tried something like: Console.prototype.log = function(msg){ Console.prototype.log.call(msg); alert(msg); } But this didn't work. I want to ...

1 2