1
vote
1answer
24 views

jQuery rebind off on when loaded via ajax

I want to provide an extension for jQuery so that I re-bind the event handlers. This is because the event handlers are bound when a partial view is loaded using ajax and they are bound to $(document) ...
0
votes
1answer
54 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 ...
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 = { ...
0
votes
0answers
45 views

Extending a jquery plugin / overwrite methods of a plugin - Example bxslider

i really need to overwrite a method in an existing plugin (bxslider). original code of bxslider: ;(function($){ var plugin = {}; var defaults = { //lots of settings } ...
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
77 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: { ...
0
votes
1answer
47 views

Extend Galleriffic buildImage

I am using the jQuery plugin "Galleriffic". I want it to resize the image after it calls it's buildImage method. I've found the following code here and it works but it seems to me like there is a ...
1
vote
5answers
42 views

jquery: extend method with two objects - result is object Object?

I'm doing some jQuery tutorial at jQuery.com and try to understand the extend method right now. it works ALMOST. var object1 = { apple: 0, banana: {weight: 52, price: ...
0
votes
2answers
209 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
43 views

Make jQuery plugin method publicly available once the plugin has been applied to an element

I'm modifying an existing jQuery plugin that currently has a private function (assigned to a var within the plugin scope) that I would like to expose so I can call it from outside the plugin at an ...
0
votes
1answer
61 views

How to extend $.post() with more options from $.ajax()

Is it possible to extend the properties and options of jQuery's $.post() helper function. I sometimes need to add more properties to $.post(), like async, beforeSend, contentType, context, ...
2
votes
1answer
65 views

Is it possible to do configuration inheritance with Require.js?

I am trying to figure out the best way to do quasi-inheritance of configuration in Require.js. I have a root webapp, then child webapps underneath in their own contexts, like this: / ...
4
votes
2answers
73 views

What different between 2 ways of jquery extend?

I'm coding some jquery plugins, I extended these but I dont know why: Method 1 (function($){ $.fn.myplugin = function() {} })(jQuery); $.extend({myplugin : $.fn.myplugin}); Method 2 ...
0
votes
2answers
52 views

Js: Adding nested object literal items — can't figure it out

Here is my code: Cart = { items: { id1: { cost: 55 }, id3: { cost: 20 }, id2: { cost: 15 } }, blah blah blah } Now I want to add values to Cart.items with ...
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
2answers
63 views

extend more jquery

<script type="text/javascript"> function lastAddedLiveFunc(goto) { alert(goto) ; jQuery('.scroll_container').scrollExtend( { 'target': ...
0
votes
1answer
304 views

scroll extend jQuery like facebook

<script type="text/javascript"> jQuery(document).ready( function() { jQuery('.scroll_container').scrollExtend( { 'target': ...
3
votes
1answer
38 views

Extending properties for qtip or other selector plugin

I am trying to set bunch of default properties for multiple instances of qtip, but it is not working. is it possible or am I doing something wrong? Common Properties var qtipDefaults = { ...
3
votes
3answers
234 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
354 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 ...
2
votes
2answers
92 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
1answer
508 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 ...
0
votes
3answers
105 views

How does $.extend work?

If I try it like $.extend(function_arguments, defaults_arguments) not all of the default_arguments get overwritten. For example if one of them is a function (this), it will remain in the object if ...
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 ...
0
votes
2answers
136 views

jQuery extend - target object don't get extended

var collection = $('ul li'); collection.each(function (index) { var test = $.extend($(this), { // var test = $.extend(collection.eq(index), { someProperty: 'val' }); ...
0
votes
0answers
192 views

Keith Wood jQuery Datepicker return date onSelect

I'm using Keith Wood's Datepicker plugin to provide an interface for choosing multiple dates on which events are happening. As part of this, I need to request further information (prices etc) for each ...
0
votes
0answers
81 views

Can you inherit local variables?

I was wondering if the following code is executed, does it inherit local variables from the NewDragDrop function? Does it matter if the NewDragDrop() is the constructor of another class? function ...
1
vote
1answer
419 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
1answer
41 views

How to extend click method of accordion

I need to extend click method of accordion. I have something like: <div id="accordion"> <h3><a href="#"> <div id="toChange1">Section ...
0
votes
1answer
160 views

Put a json object in Dropdownlist value property, how to access it

I'm putting a json object into the value of a dropdownlist / option <select> <option value="{a:'1',b:'11'}">a</option> <option value="{a:'2',b:'12'}">b<option> ...
0
votes
1answer
150 views

Add functionality to JQuery UI Datepicker to keep date bofore change

I need to add functionality to JQuery UI Datepicker. I need to keep current (previous) datepicker date before date changes and set new function method to datepicker to tell if previous date < next ...
1
vote
1answer
229 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"); ...
1
vote
2answers
222 views

How to extend JQuery UI plugin

The existing dialog plugin doesn't have an option to close dialog on clicking modal overlay, how to add an option to provide the functionality?
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
0answers
127 views

JQuery extend custom object with parameters

there might be an easier way to achieve what i'm trying to do and i don't think i completely understand $.extend() function, but here i am seeking for an advise: i have this custom grid object ...
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
1answer
120 views

jQuery plugin: Define defaults for NESTED options

I would like to define defaults for nested options like this: $("div").filters({ url : 'url.example.com' filters : { 'projects' : { ...
0
votes
1answer
35 views

extending jquery 1.2 to include index()

I'm working with some 3rd party teams and am unable to upgrade to jquery 1.4+ and therfor stuck with 1.2. I was wondering if there was a way to extend the library to include the index() method. I ...
0
votes
1answer
155 views

jquery how to override the class method?

Looks like this question is popular, but there is no jQuery version. I have two classes the second is extended from the first one. The extension method is copied from here. function UIButton(o){ ...
0
votes
1answer
170 views

Extending Jquery : To Render Partial

I'm trying to write a function that extends jquery. It appears to be working but I get this error when trying to use it. XMLHttpRequest cannot load ...
4
votes
1answer
847 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
644 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 ...
0
votes
1answer
94 views

Using the $.extend plugin for jQuery on an undeclared variable

This page says to use: var object = $.extend({}, object1, object2); But I prefer to scope everything. So if I had a local scope explicitly declared, could I use: var local = {}; ...
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
43 views

using jquery, how can I extend and pass an object to a function right at function call?

How can I do this in one line? var myOptions = defaultOptions; $.extend(myOptions, {width: 200}); $("#myField").foo(myOptions); I dont want to make any changes to defaultOptions. I do not need ...
1
vote
1answer
237 views

Extend an existing JQuery plugin // variable scope issue

First of all, I'm not a FED (I concentrate on architecture and back end code) so my JQuery isn't as good as it could be. If you have any suggestions on how to improve my code, it would be welcome. ...
1
vote
2answers
707 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 2