I\'ve learned few blocks of d3. And I\'ve made a responsive d3 histogram with the help of jquery.
Now that I wanted to go a bit forward on updating d3 c
I know the OP specified jQuery, but for those Googlers not wanting another framework, there is a native D3 way of doing this, using either request or json:
d3.request(url, function(error, response) {
// Now use response to do some d3 magic
});
or
d3.json(url, function(error, response) {
// Now use response to do some d3 magic
});