A July 2011 blog post mentioned support for jsonp, but I can't seem to get it to work.
Normally, this call would return json objects. store-name.myshopify.com/collections.json
But adding ?callback= cause it to return nothing. Am I doing something wrong? store-name.myshopify.com/collections.json?callback=?
jQuery.ajax({url: 'https://store-name.myshopify.com/collections.json', dataType: 'jsonp', success: function(r){console.log(r.collections})