jquery - Javascript w2ui objects - can't get type -
i got list of w2ui object on page. structure
and part of inside want those, 1 type of 'w2layout'.
i use jquery each go through that
jquery.each(w2ui, function(key, value) { console.log(value); } );
but can't left part!
i tried typeof
(returns object
), , value.constructor
(returns object
too), tried use instanceof w2layout
without success.
json.stringify(value);
throws error converting circular structure json
how can this?
Comments
Post a Comment