Adding key/value into array where value is a object
I want to add some text as a key and Object as a value.
Example
$('#clickme').on('click' , function() {
push to array => "some_text" as (value) and $(this) as key
})
|
Adding key/value into array where value is a object I want to add some text as a key and Object as a value. Example
|
||||
|
Just use a normal object which works as an associative array anyway:
|
|||||
|
|
This should work:
|
|||
|
|
$(this).data(value)? See api.jquery.com/data and api.jquery.com/jQuery.data – Stefan Jun 26 '12 at 11:21