version a:
var x = [];x['abc'] = 'd';x['xyz'] = 'abbb';$.each(x, function(i, el) { console.error(el);});
does not work. No output in console see here:
How can I make version a work?
I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print ...
No comments:
Post a Comment