Modify ↓
Ticket #5000 (closed feature: worksforme)
Add Join Object to Core
| Reported by: | zRing | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.4 |
| Component: | core | Version: | 1.3.2 |
| Keywords: | join, objects, core | Cc: | |
| Blocking: | Blocked by: |
Description
It would be cool if a function like:
function joinObjs() {
var newObj = {};
for(var i = 0;i < arguments.length; i++) {
if(typeof(arguments[i]) == "object") {
for(key in arguments[i]) {
newObj[key] = arguments[i][key];
}
}
}
return newObj;
}
was added to the core of jQuery. I find myself needing to join objects all the time, and it would be useful if it was added to jQuery.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

http://docs.jquery.com/Core/jQuery.extend#object